-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickModConfig.csproj
More file actions
29 lines (24 loc) · 932 Bytes
/
QuickModConfig.csproj
File metadata and controls
29 lines (24 loc) · 932 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
28
29
<Project Sdk="Microsoft.NET.Sdk">
<!-- Import tModLoader mod properties -->
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<BuildMod>false</BuildMod>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<!-- Roslynator Analyzers -->
<PackageReference Include="Roslynator.Analyzers" Version="4.15.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<!-- ValkyrieLib -->
<ProjectReference Include="..\ValkyrieLib\ValkyrieLib.csproj" />
<!-- DragonLens -->
<Reference Include="DragonLens">
<HintPath>ModAssemblies\DragonLens.dll</HintPath>
</Reference>
<!-- Exclude Source -->
<Compile Remove="Source\**\*.cs" />
</ItemGroup>
</Project>