-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCarterService.Project.Template.csproj
34 lines (31 loc) · 1.48 KB
/
CarterService.Project.Template.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageType>Template</PackageType>
<IsPackable>true</IsPackable>
<Version>0.0.9</Version>
<PackageId>CarterServiceTemplate</PackageId>
<Copyright>2023</Copyright>
<Title>Carter Service Template</Title>
<Authors>Jaxel Rojas</Authors>
<Description>Carter template for web services including a few helpful libraries, for the full list of the libraries see the github page on the project url.</Description>
<PackageTags>template;carter;api;service</PackageTags>
<PackageProjectUrl>https://github.com/Jaxelr/CarterServiceTemplate</PackageProjectUrl>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>Content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<NoWarn>NU5128</NoWarn>
<PackageReleaseNotes>Upgrade to target net 8.0</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Content Include="Content\**" Exclude="**\*.Develop.sln;**\.vs\**;**\bin\**;**\obj\**;**\*.user;**\*.lock.json;**\node_modules\**;**\.vscode\**;*.gitkeep" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>