-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathModShardLauncher.Templates.csproj
More file actions
62 lines (49 loc) · 2.06 KB
/
ModShardLauncher.Templates.csproj
File metadata and controls
62 lines (49 loc) · 2.06 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ModShardLauncher.Templates</PackageId>
<Version>1.8.0</Version>
<Title>ModShardLauncherTemplate</Title>
<Authors>zizani</Authors>
<Description>Template to set up a basic mod with MSL.</Description>
<PackageTags>msl;templates</PackageTags>
<PackageProjectUrl>https://github.com/ModShardTeam/ModShardLauncherTemplate</PackageProjectUrl>
<!-- Keep package type as 'Template' to show the package as a template package on nuget.org and make your template available in dotnet new search.-->
<PackageType>Template</PackageType>
<TargetFramework>net6.0-windows</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>RELEASENOTES.md</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<LocalizeTemplates>false</LocalizeTemplates>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.TemplateEngine.Tasks" Version="*" PrivateAssets="all" IsImplicitlyDefined="true"/>
</ItemGroup>
<ItemGroup>
<Content Include="template\**\*" Exclude="template\**\bin\**;template\**\obj\**"/>
<Compile Remove="**\*"/>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="RELEASENOTES.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/ModShardTeam/ModShardLauncherTemplate</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<ProjectUrl>https://github.com/ModShardTeam/ModShardLauncherTemplate</ProjectUrl>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
</Project>