-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFreeFrame.csproj
More file actions
23 lines (19 loc) · 788 Bytes
/
FreeFrame.csproj
File metadata and controls
23 lines (19 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ImGui.NET" Version="1.87.3" />
<PackageReference Include="OpenTK" Version="4.7.1" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Tests\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if not exist $(ProjectDir)$(OutDir)Shaders mkdir $(ProjectDir)$(OutDir)Shaders
copy "$(ProjectDir)Shaders\*" "$(ProjectDir)$(OutDir)Shaders\"" />
</Target>
</Project>