Skip to content

Commit 1db994f

Browse files
committed
Improvements in NuGet packing
1 parent 403fb5e commit 1db994f

File tree

4 files changed

+20
-19
lines changed

4 files changed

+20
-19
lines changed
File renamed without changes.
Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,34 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
4-
<PackageType>Template</PackageType>
5-
<PackageVersion>1.0</PackageVersion>
6-
<PackageId>AspNetCoreTemplate</PackageId>
7-
<Title>ASP.NET-Core-Template</Title>
8-
<Authors>Nikolay Kostov</Authors>
9-
<Description>A ready-to-use template for ASP.NET Core with repositories, services, models mapping, DI and StyleCop warnings fixed.</Description>
103
<TargetFramework>netcoreapp3.1</TargetFramework>
11-
124
<IncludeContentInPack>true</IncludeContentInPack>
135
<IncludeBuildOutput>false</IncludeBuildOutput>
146
<ContentTargetFolders>content</ContentTargetFolders>
157
<EnableDefaultItems>false</EnableDefaultItems>
168
<NoDefaultExcludes>true</NoDefaultExcludes>
17-
</PropertyGroup>
18-
19-
<PropertyGroup>
209
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
21-
<PackageOutputPath>./ASP.NET Core Template</PackageOutputPath>
22-
23-
<PackageTags>c#;asp.net;core;template</PackageTags>
24-
<PackageCopyright>Nikolay Kostov</PackageCopyright>
25-
<PackageProjectUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</PackageProjectUrl>
10+
<PackageOutputPath>.</PackageOutputPath>
2611
</PropertyGroup>
2712

2813
<ItemGroup>
29-
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
14+
<Content Include="src\**\*" Exclude="src\**\bin\**;src\**\obj\**" />
3015
<Compile Remove="**\*" />
3116
</ItemGroup>
32-
17+
18+
<PropertyGroup>
19+
<PackageType>Template</PackageType>
20+
<Version>1.0.0</Version>
21+
<PackageId>AspNetCoreTemplate</PackageId>
22+
<Title>ASP.NET Core Template</Title>
23+
<Company>Nikolay.IT</Company>
24+
<Authors>Nikolay.IT</Authors>
25+
<Copyright>Nikolay.IT © 2020</Copyright>
26+
<Description>A ready-to-use template for ASP.NET Core with repositories, services, models mapping, DI and StyleCop warnings fixed.</Description>
27+
<PackageTags>c#;asp.net;core;template;web</PackageTags>
28+
<PackageCopyright>Nikolay.IT © 2020</PackageCopyright>
29+
<PackageProjectUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</PackageProjectUrl>
30+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
31+
<RepositoryType>git</RepositoryType>
32+
<RepositoryUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</RepositoryUrl>
33+
</PropertyGroup>
3334
</Project>

src/Web/AspNetCoreTemplate.Web/libman.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
]
1212
},
1313
{
14-
"library": "[email protected].2",
14+
"library": "[email protected].3",
1515
"destination": "wwwroot/lib/bootstrap/",
1616
"files": [
1717
"dist/css/bootstrap.css",

0 commit comments

Comments
 (0)