-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDotNetStarterProjectTemplate.Package.csproj
37 lines (33 loc) · 1.51 KB
/
DotNetStarterProjectTemplate.Package.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
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<PackageType>Template</PackageType>
<PackageVersion>1.4.5</PackageVersion>
<PackageId>MarcelMichau.Templates.DotNetStarterProject</PackageId>
<Title>.NET Starter Project Template</Title>
<Authors>Marcel Michau</Authors>
<Description>.NET project template which serves as a good starting point to scale to more complex projects</Description>
<PackageTags>project;template;csharp;dotnet;aspire</PackageTags>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<PackageProjectUrl>https://github.com/MarcelMichau/dotnet-starter-project-template</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/MarcelMichau/dotnet-starter-project-template</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="**\*" Exclude="**\bin\**;**\obj\**;.vs\**;.vscode\**;**\*.user;.git\**;LICENSE;README.md;DotNetStarterProjectTemplate.Package.csproj" />
<Compile Remove="**\*" />
<None Include=".template.config\icon.png" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>