-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVoidBehemoth.SMLTemplate.csproj
More file actions
42 lines (35 loc) · 1.66 KB
/
VoidBehemoth.SMLTemplate.csproj
File metadata and controls
42 lines (35 loc) · 1.66 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- The package metadata. Fill in the properties marked as TODO below -->
<!-- Follow the instructions on https://learn.microsoft.com/en-us/nuget/create-packages/package-authoring-best-practices -->
<PackageId>VoidBehemoth.SMLTemplate</PackageId>
<PackageVersion>1.1</PackageVersion>
<Title>SalemModLoader Mod Template</Title>
<Authors>VoidBehemoth</Authors>
<Description>A template for creating general-purpose mods for Town of Salem 2.</Description>
<PackageTags>dotnet-new;templates</PackageTags>
<PackageProjectUrl>https://github.com/voidbehemoth/SML-Mod-Template</PackageProjectUrl>
<PackageType>Template</PackageType>
<TargetFramework>netstandard21</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<LocalizeTemplates>true</LocalizeTemplates>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.TemplateEngine.Tasks" Version="*" PrivateAssets="all" IsImplicitlyDefined="true"/>
</ItemGroup>
<ItemGroup>
<Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>