forked from helix-toolkit/helix-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHelixToolkit.SharpDX.Core.Wpf.csproj
More file actions
69 lines (62 loc) · 3.02 KB
/
HelixToolkit.SharpDX.Core.Wpf.csproj
File metadata and controls
69 lines (62 loc) · 3.02 KB
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
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Copyright>Copyright (C) Helix Toolkit 2019.</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>
<Company>HelixToolkit</Company>
<Authors>HelixToolkit Contributors</Authors>
<Version>0.0.0.1</Version>
<RepositoryType>git</RepositoryType>
<PackageTags>SharpDX; DirectX; 3D;</PackageTags>
<RootNamespace>HelixToolkit.Wpf.SharpDX</RootNamespace>
<DelaySign>false</DelaySign>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DX11; DX11_1; MSAA; SHARPDX; COREWPF</DefineConstants>
<OutputPath>bin\Debug\</OutputPath>
<NoWarn>1701;1702; 1591;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;DX11; DX11_1; MSAA; SHARPDX; COREWPF</DefineConstants>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>bin\Release\HelixToolkit.SharpDX.Core.Wpf.xml</DocumentationFile>
<NoWarn>1701;1702; 1591;</NoWarn>
</PropertyGroup>
<Import Project="..\HelixToolkit.SharpDX.SharedModel\HelixToolkit.SharpDX.SharedModel.projitems" Label="Shared" />
<Import Project="..\HelixToolkit.Wpf.SharpDX.Shared\HelixToolkit.Wpf.SharpDX.Shared.projitems" Label="Shared" />
<ItemGroup>
<PackageReference Include="SharpDX.Direct2D1" Version="4.2.0" />
<PackageReference Include="SharpDX.Direct3D11" Version="4.2.0" />
<PackageReference Include="SharpDX.Direct3D9" Version="4.2.0" />
<PackageReference Include="SharpDX.DXGI" Version="4.2.0" />
<PackageReference Include="SharpDX.Mathematics" Version="4.2.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub">
<Version>1.0.0</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HelixToolkit.SharpDX.Core\HelixToolkit.SharpDX.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>