Skip to content

Commit

Permalink
Improvements in NuGet packing
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayIT committed Oct 25, 2020
1 parent 403fb5e commit 1db994f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
File renamed without changes.
File renamed without changes.
37 changes: 19 additions & 18 deletions .nuget/pack.csproj → nuget.csproj
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0</PackageVersion>
<PackageId>AspNetCoreTemplate</PackageId>
<Title>ASP.NET-Core-Template</Title>
<Authors>Nikolay Kostov</Authors>
<Description>A ready-to-use template for ASP.NET Core with repositories, services, models mapping, DI and StyleCop warnings fixed.</Description>
<TargetFramework>netcoreapp3.1</TargetFramework>

<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<EnableDefaultItems>false</EnableDefaultItems>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>

<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageOutputPath>./ASP.NET Core Template</PackageOutputPath>

<PackageTags>c#;asp.net;core;template</PackageTags>
<PackageCopyright>Nikolay Kostov</PackageCopyright>
<PackageProjectUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</PackageProjectUrl>
<PackageOutputPath>.</PackageOutputPath>
</PropertyGroup>

<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Content Include="src\**\*" Exclude="src\**\bin\**;src\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>


<PropertyGroup>
<PackageType>Template</PackageType>
<Version>1.0.0</Version>
<PackageId>AspNetCoreTemplate</PackageId>
<Title>ASP.NET Core Template</Title>
<Company>Nikolay.IT</Company>
<Authors>Nikolay.IT</Authors>
<Copyright>Nikolay.IT © 2020</Copyright>
<Description>A ready-to-use template for ASP.NET Core with repositories, services, models mapping, DI and StyleCop warnings fixed.</Description>
<PackageTags>c#;asp.net;core;template;web</PackageTags>
<PackageCopyright>Nikolay.IT © 2020</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>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Web/AspNetCoreTemplate.Web/libman.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
]
},
{
"library": "bootstrap@4.5.2",
"library": "bootstrap@4.5.3",
"destination": "wwwroot/lib/bootstrap/",
"files": [
"dist/css/bootstrap.css",
Expand Down

0 comments on commit 1db994f

Please sign in to comment.