-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTemplates.csproj
More file actions
33 lines (29 loc) · 1.36 KB
/
Templates.csproj
File metadata and controls
33 lines (29 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.4.2</PackageVersion>
<PackageId>jayugg.VintageStory.Mod.Templates</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Title>Vintage Story Mod Templates</Title>
<Authors>jayu</Authors>
<Description>Custom templates for creating Vintage Story mods</Description>
<PackageTags>dotnet-new;templates;VintageStory;Modding</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>modicon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jayugg/VSModTemplates</RepositoryUrl>
<PackageProjectUrl>https://github.com/jayugg/VSModTemplates</PackageProjectUrl>
<TargetFramework>net8.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<None Include=".\README.md" Pack="true" PackagePath="" />
<None Include=".\modicon.png" Pack="true" PackagePath="" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>