forked from DiligentGraphics/DiligentSamples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTutorial03_Texturing-DotNet.csproj
More file actions
26 lines (22 loc) · 995 Bytes
/
Tutorial03_Texturing-DotNet.csproj
File metadata and controls
26 lines (22 loc) · 995 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Platforms>x86;x64</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseWindowsForms>true</UseWindowsForms>
<EnableDefaultItems>false</EnableDefaultItems>
<TargetFramework>net6.0-windows</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<!-- Use the latest package version
https://learn.microsoft.com/en-us/nuget/concepts/package-versioning#floating-version-resolutions -->
<PackageReference Include="DiligentGraphics.DiligentEngine.Core" Version="*-*" />
</ItemGroup>
<ItemGroup>
<Compile Include="src/*.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="assets/**" CopyToOutputDirectory="PreserveNewest" TargetPath="assets/%(Filename)%(Extension)" Visible="false" />
</ItemGroup>
</Project>