123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
- <ProjectReference Include="..\..\src\Headless\Avalonia.Headless.Vnc\Avalonia.Headless.Vnc.csproj" />
- <ProjectReference Include="..\..\src\Linux\Avalonia.LinuxFramebuffer\Avalonia.LinuxFramebuffer.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.X11\Avalonia.X11.csproj" />
- <ProjectReference Include="..\SafeAreaDemo\SafeAreaDemo.csproj" />
- </ItemGroup>
- <Import Project="..\..\build\SampleApp.props" />
- <Import Project="..\..\build\ReferenceCoreLibraries.props" />
- </Project>
|