| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <OutputType>Exe</OutputType> |
| 5 | <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework> |
| 6 | <Nullable>enable</Nullable> |
| 7 | <ImplicitUsings>enable</ImplicitUsings> |
| 8 | <RootNamespace>WSLCNextCloud</RootNamespace> |
| 9 | <AssemblyName>nextcloud</AssemblyName> |
| 10 | <!-- The native wslcsdk.dll shipped by the SDK package is architecture |
| 11 | specific, and the package picks which copy to deploy from PlatformTarget. |
| 12 | Default to x64 so a plain `dotnet build` / `dotnet run` works out of the |
| 13 | box. On an ARM64 device build with `dotnet build -p:PlatformTarget=ARM64`. --> |
| 14 | <PlatformTarget Condition="'$(PlatformTarget)' == ''">x64</PlatformTarget> |
| 15 | </PropertyGroup> |
| 16 | |
| 17 | <ItemGroup> |
| 18 | <PackageReference Include="Microsoft.WSL.Containers" Version="2.9.3" /> |
| 19 | </ItemGroup> |
| 20 | |
| 21 | </Project> |