-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSItemModifier.csproj
More file actions
25 lines (23 loc) · 1.01 KB
/
SItemModifier.csproj
File metadata and controls
25 lines (23 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<LangVersion>preview</LangVersion>
<TargetFrameworks>net472</TargetFrameworks>
<AssemblyName>SItemModifier</AssemblyName>
<RootNamespace>SItemModifier</RootNamespace>
<NoWarn>$(NoWarn);NU1701;NU1702;CS0436</NoWarn>
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Legacy2CPSWorkaround" Version="1.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Lib.Harmony" Version="2.2.0" />
<PackageReference Include="RocketMod.Modern.Dependencies" Version="1.*-*" />
<PackageReference Include="RocketMod.Modern.Generator" Version="1.*-*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>