mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
20 lines
537 B
XML
20 lines
537 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net10.0</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<LangVersion>preview</LangVersion>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="LanMountainDesktop.AirAppSdk" Version="6.0.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<!-- Include airapp.json in output -->
|
||
|
|
<ItemGroup>
|
||
|
|
<None Update="airapp.json">
|
||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
|
</None>
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|