-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathPow3r.csproj
More file actions
25 lines (20 loc) · 795 Bytes
/
Pow3r.csproj
File metadata and controls
25 lines (20 loc) · 795 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>disable</Nullable>
</PropertyGroup>
<Import Project="../MSBuild/Content.props" />
<ItemGroup>
<PackageReference Include="ImGui.NET" />
<PackageReference Include="OpenTK" />
<PackageReference Include="Veldrid" />
<PackageReference Include="Veldrid.SPIRV" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Content.Server\Content.Server.csproj" />
</ItemGroup>
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
<Import Project="..\RobustToolbox\Imports\Shared.props" />
<Import Project="..\RobustToolbox\Imports\Testing.props" />
</Project>