-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSmartUI.csproj
More file actions
27 lines (25 loc) · 958 Bytes
/
SmartUI.csproj
File metadata and controls
27 lines (25 loc) · 958 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
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<LangVersion>preview</LangVersion>
<TargetFrameworks>net472</TargetFrameworks>
<NoWarn>$(NoWarn);CS0436</NoWarn>
<RunPostBuildEvent>Always</RunPostBuildEvent>
<Nullable>annotations</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="lib\**" />
<EmbeddedResource Remove="lib\**" />
<None Remove="lib\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="RocketMod.Modern.Dependencies" Version="1.*-*" />
<PackageReference Include="RocketMod.Modern.Generator" Version="1.*-*" />
</ItemGroup>
<ItemGroup>
<Reference Include="Unity.TextMeshPro" HintPath="lib\Unity.TextMeshPro.dll" />
</ItemGroup>
</Project>