-
-
Notifications
You must be signed in to change notification settings - Fork 173
/
nuget.csproj
36 lines (34 loc) · 1.57 KB
/
nuget.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<EnableDefaultItems>false</EnableDefaultItems>
<NoDefaultExcludes>true</NoDefaultExcludes>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageOutputPath>.</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<Content Include="src\**\*" Exclude="**\bin\**\*;**\obj\**\*" />
<Compile Remove="**\*" />
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<PackageType>Template</PackageType>
<Version>7.0.3</Version>
<PackageId>AspNetCoreTemplate</PackageId>
<Title>ASP.NET Core Template</Title>
<Company>Nikolay.IT</Company>
<Authors>Nikolay.IT</Authors>
<Copyright>Nikolay.IT © 2017-2023</Copyright>
<Description>A ready-to-use template for ASP.NET Core 6 with repositories, services, models mapping, DI and StyleCop warnings fixed.</Description>
<PackageTags>c#;asp.net;core;template;web</PackageTags>
<PackageCopyright>Nikolay.IT © 2017-2023</PackageCopyright>
<PackageProjectUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
</Project>