12345678910111213141516171819202122232425262728293031323334353637383940 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
- <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\src\Avalonia.X11\NativeDialogs\Gtk.cs" Link="NativeControls\Gtk\Gtk.cs" />
- <Compile Include="..\..\src\Avalonia.Base\Platform\Interop\Utf8Buffer.cs" Link="NativeControls\Utf8Buffer.cs" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="NativeControls\Gtk\nodes.mp4">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
- <ProjectReference Include="..\..\src\Headless\Avalonia.Headless.Vnc\Avalonia.Headless.Vnc.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Dialogs\Avalonia.Dialogs.csproj" />
- <ProjectReference Include="..\..\src\Linux\Avalonia.LinuxFramebuffer\Avalonia.LinuxFramebuffer.csproj" />
- <ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.X11\Avalonia.X11.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>
|