forked from helix-toolkit/helix-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelixToolkit.WinUI.csproj
61 lines (55 loc) · 3.16 KB
/
HelixToolkit.WinUI.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0-windows10.0.19041</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>HelixToolkit.WinUI</RootNamespace>
<RuntimeIdentifiers>win10-x86;win10-x64</RuntimeIdentifiers>
<UseWinUI>true</UseWinUI>
<Copyright>Copyright (C) Helix Toolkit 2022.</Copyright>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>http://www.helix-toolkit.org/</PackageProjectUrl>
<PackageIconUrl>https://avatars3.githubusercontent.com/u/8432523?s=200&v=4</PackageIconUrl>
<RepositoryUrl>https://github.com/helix-toolkit/helix-toolkit</RepositoryUrl>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;WINUI;DX11_1</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DocumentationFile></DocumentationFile>
<OutputPath>bin\Debug</OutputPath>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>WINUI; DX11_1</DefineConstants>
<DocumentationFile>bin\Release\HelixToolkit.WinUI.xml</DocumentationFile>
<OutputPath>bin\Release</OutputPath>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Remove="CommonDX\SwapChainComposition2RenderHost.cs" />
<Compile Remove="CommonDX\SwapChainSurfaceRenderHost.cs" />
<Compile Remove="CommonDX\_ISwapChainPanelNative.cs" />
<Compile Remove="CommonDX\_SwapChainRenderHost.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cyotek.Drawing.BitmapFont" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.1.1" />
<PackageReference Include="SharpDX" Version="4.2.0" />
<PackageReference Include="SharpDX.D3DCompiler" Version="4.2.0" />
<PackageReference Include="SharpDX.Direct2D1" Version="4.2.0" />
<PackageReference Include="SharpDX.Direct3D11" Version="4.2.0" />
<PackageReference Include="SharpDX.DXGI" Version="4.2.0" />
<PackageReference Include="SharpDX.Mathematics" Version="4.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HelixToolkit.SharpDX.Core\HelixToolkit.SharpDX.Core.csproj" />
<ProjectReference Include="..\HelixToolkit\HelixToolkit.csproj" />
</ItemGroup>
<Import Project="..\HelixToolkit.SharpDX.SharedModel\HelixToolkit.SharpDX.SharedModel.projitems" Label="Shared" />
<Import Project="..\HelixToolkit.UWP.Shared\HelixToolkit.UWP.Shared.projitems" Label="Shared" />
</Project>