forked from moonheart08/Content.AL.UIKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContent.AL.UIKit.csproj
More file actions
39 lines (39 loc) · 1.64 KB
/
Copy pathContent.AL.UIKit.csproj
File metadata and controls
39 lines (39 loc) · 1.64 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
<PropertyGroup>
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
<TargetFramework>$(TargetFramework)</TargetFramework>
<LangVersion>12</LangVersion>
<IsPackable>false</IsPackable>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<WarningsAsErrors>nullable</WarningsAsErrors>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nett" />
<PackageReference Include="JetBrains.Annotations" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
<ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
<ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="LICENSE" />
<None Remove="README.md" />
<None Remove="img.png" />
<None Remove="readme_assets\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="readme_assets\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="readme_assets\**" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Remove="readme_assets\**" />
</ItemGroup>
<Import Project="..\RobustToolbox\MSBuild\XamlIL.targets" />
</Project>