-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathNetCorePal.Template.csproj
More file actions
27 lines (26 loc) · 1.25 KB
/
NetCorePal.Template.csproj
File metadata and controls
27 lines (26 loc) · 1.25 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(MSBuildThisFileDirectory)\eng\versions.props" />
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageId>NetCorePal.Template</PackageId>
<Title>NetCorePal DDD Templates</Title>
<Authors>NetCorePal</Authors>
<Description>NetCorePal Cloud Framework Templates</Description>
<PackageTags>dotnet-new;templates;contoso</PackageTags>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/netcorepal/netcorepal-cloud-template</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/netcorepal/netcorepal-cloud-template.git</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Content Include="template\**\*" Exclude="template\**\bin\**;template\**\obj\**;template\.vs\**" />
<Compile Remove="**\*" />
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>