-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtemplatepack.proj
29 lines (25 loc) · 1.2 KB
/
templatepack.proj
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.Build.NoTargets/3.5.6" DefaultTargets="Pack">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>4.0.0</PackageVersion>
<PackageId>Reactor.Template</PackageId>
<Authors>NuclearPowered</Authors>
<Description>Mod template for Reactor.</Description>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/NuclearPowered/Reactor.Template</RepositoryUrl>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
<TargetFramework>net6.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="**\*" />
<Content Include=".template.config\**\*" />
<Content Include="Reactor.Template.sln" />
<Content Include="Reactor.Template\**\*" Exclude="**\bin\**;**\obj\**" />
<Content Include="nuget.config;build.cake;.github/workflows/main.yml" />
</ItemGroup>
</Project>