-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSimpleGui.Example.csproj
42 lines (35 loc) · 1.13 KB
/
SimpleGui.Example.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Shaders\**" />
<EmbeddedResource Remove="Shaders\**" />
<None Remove="Shaders\**" />
</ItemGroup>
<ItemGroup>
<None Remove="gui.yaml" />
<None Remove="gui\color.png" />
<None Remove="gui\Test.png" />
</ItemGroup>
<ItemGroup>
<Content Include="gui.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="gui\color.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="gui\Test.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Veldrid" Version="4.7.0" />
<PackageReference Include="Veldrid.SPIRV" Version="1.0.12" />
<PackageReference Include="Veldrid.StartupUtilities" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SimpleGui\SimpleGui.csproj" />
</ItemGroup>
</Project>