-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRocnikovaPraca0.csproj
35 lines (31 loc) · 1.22 KB
/
RocnikovaPraca0.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OpenTK" Version="4.8.1" />
<PackageReference Include="StbImageSharp" Version="2.27.13" />
</ItemGroup>
<ItemGroup>
<None Remove="res\Shaders\shader.frag" />
<Content Include="res\Shaders\shader.frag">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="res\Shaders\shader.vert" />
<Content Include="res\Shaders\shader.vert">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="res\Shaders\someObject.obj" />
<None Remove="res\Textures\wall.jpg" />
<Content Include="res\Textures\wall.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="res\Textures\awesomeface.png" />
<Content Include="res\Textures\awesomeface.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>