Skip to content

Commit 67fcbd9

Browse files
committed
Update version to 5.0.0 to match the .NET version
1 parent a1e0aec commit 67fcbd9

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ dotnet new -i AspNetCoreTemplate
2424
dotnet new aspnet-core -n YourProjectName
2525
```
2626

27+
## Pack this Template
28+
29+
```powershell
30+
dotnet pack .\nuget.csproj
31+
```
32+
2733
## Project Overview
2834

2935
![Dependencies Graph](https://user-images.githubusercontent.com/25417032/97107966-0e5fc500-16d3-11eb-9b9c-c73012ff97ac.png)

nuget.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
<IncludeContentInPack>true</IncludeContentInPack>
55
<IncludeBuildOutput>false</IncludeBuildOutput>
66
<ContentTargetFolders>content</ContentTargetFolders>
@@ -17,13 +17,13 @@
1717

1818
<PropertyGroup>
1919
<PackageType>Template</PackageType>
20-
<Version>1.0.1</Version>
20+
<Version>5.0.0</Version>
2121
<PackageId>AspNetCoreTemplate</PackageId>
2222
<Title>ASP.NET Core Template</Title>
2323
<Company>Nikolay.IT</Company>
2424
<Authors>Nikolay.IT</Authors>
2525
<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>
26+
<Description>A ready-to-use template for ASP.NET Core 5 with repositories, services, models mapping, DI and StyleCop warnings fixed.</Description>
2727
<PackageTags>c#;asp.net;core;template;web</PackageTags>
2828
<PackageCopyright>Nikolay.IT © 2020</PackageCopyright>
2929
<PackageProjectUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</PackageProjectUrl>

src/.template_config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json.schemastore.org/template",
33
"author": "Nikolay.IT",
4-
"classifications": [ "ASP.NET Core", "Core", "MVC", "Template" ],
4+
"classifications": [ "ASP.NET Core", "Core", "MVC", "Template", "Web" ],
55
"tags": {
66
"language": "C#"
77
},

0 commit comments

Comments
 (0)