-
Notifications
You must be signed in to change notification settings - Fork 5
/
OwlcatTemplates.csproj
31 lines (28 loc) · 1.34 KB
/
OwlcatTemplates.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.13.0</PackageVersion>
<PackageId>Owlcat.Templates</PackageId>
<Title>Owlcat Mod Templates</Title>
<Authors>ADDB;Microsoftenator;AlterAsc;CascadingDragon;DarthParametric;hambeard</Authors>
<Description>Mod Templates for Owlcat Games</Description>
<PackageTags>UnityModManager;Mod;Template;Owlcat</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<TargetFramework>net481</TargetFramework>
<PackageOutputPath>$(SolutionDir)nuget</PackageOutputPath>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NoDefaultExcludes>true</NoDefaultExcludes>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/xADDBx/OwlcatNuGetTemplates/</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**;content\**\GamePath.props" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>