Skip to content

Commit

Permalink
Merge pull request #234 from petabridge/dev
Browse files Browse the repository at this point in the history
v2.0.1 Release
  • Loading branch information
Aaronontheweb authored Feb 18, 2022
2 parents 8b65bfa + a2ea312 commit 6085e23
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The goal of this project is provide templates for creating professional-quality
To use these templates, execute the following command on the `dotnet` CLI:

```
C:\> dotnet new -i "Petabridge.Templates::*"
dotnet new -i "Petabridge.Templates::*"
```

This will download the latest available [Petabridge.Templates package from NuGet](https://www.nuget.org/packages/Petabridge.Templates) and install it into your CLI.
Expand Down
7 changes: 6 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#### 2.0.0 February 21 2022 ####
#### 2.0.1 February 18 2022 ####

- Fix missing `.gitignore` file - set `NoDefaultExcludes` to `true`.


#### 2.0.0 February 17 2022 ####

- Switched build automation system from FAKE to [NUKE](https://nuke.build/)
- Upgraded [pb-lib](https://github.com/petabridge/Petabridge.Library/), [`pb-akka-cluster`](https://github.com/petabridge/Petabridge.App) and [`pb-akka-web`](https://github.com/petabridge/Petabridge.App.Web) to all use .NET 6
Expand Down
11 changes: 4 additions & 7 deletions src/Petabridge.Templates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,22 @@
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageVersion>2.0.0</PackageVersion>
<PackageVersion>2.0.1</PackageVersion>
<PackageId>Petabridge.Templates</PackageId>
<Title>Petabridge.Templates</Title>
<Authors>Petabridge</Authors>
<Description>Professional .NET Core templates complete with CI, Docs, and more. Supports library, Akka.NET, and ASP.NET Core application types.</Description>
<PackageTags>dotnet-new;templates;petabridge;akka;</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageReleaseNotes>- Switched build automation system from FAKE to [NUKE](https://nuke.build/)
- Upgraded [pb-lib](https://github.com/petabridge/Petabridge.Library/), [`pb-akka-cluster`](https://github.com/petabridge/Petabridge.App) and [`pb-akka-web`](https://github.com/petabridge/Petabridge.App.Web) to all use .NET 6
- Replaced `common.props` with `Directory.Build.props`
- Git versioning with [GitVersion](https://gitversion.net/)
- Added README to NuGet Package</PackageReleaseNotes>
<PackageReleaseNotes>- Fix missing `.gitignore` file - set `NoDefaultExcludes` to `true`.</PackageReleaseNotes>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**;templates\**\.git" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>

0 comments on commit 6085e23

Please sign in to comment.