12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
- <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Dialogs\Avalonia.Dialogs.csproj" />
- <ProjectReference Include="..\MobileSandbox\MobileSandbox.csproj" />
- <!-- For native controls test -->
- <PackageReference Include="MonoMac.NetStandard" Version="0.0.4" />
- </ItemGroup>
- <PropertyGroup>
- <!-- For Microsoft.CodeAnalysis -->
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
- <Import Project="..\..\build\SampleApp.props" />
- <Import Project="..\..\build\ReferenceCoreLibraries.props" />
- </Project>
|