Skip to content

Commit

Permalink
3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jchannon committed May 31, 2018
1 parent ef63008 commit 1613194
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image: ubuntu

version: 3.6.0-ci{build}
version: 3.7.0-ci{build}

max_jobs: 1

Expand Down
2 changes: 1 addition & 1 deletion samples/CarterAndMVC/CarterAndMVC.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>CarterAndMVC</AssemblyName>
<OutputType>Exe</OutputType>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion samples/CarterSample/CarterSample.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Carter.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>3.6.0</Version>
<VersionPrefix>3.6.0</VersionPrefix>
<Version>3.7.0</Version>
<VersionPrefix>3.7.0</VersionPrefix>
<Authors>Jonathan Channon</Authors>
<Description>Carter is a library that allows Nancy-esque routing for use with ASP.Net Core.</Description>
<PackageTags>asp.net core;nancy;.net core;routing;carter</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion template/CarterTemplate.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>CarterTemplate</id>
<version>3.6.0</version>
<version>3.7.0</version>
<title>Carter Template for dotnet-new</title>
<summary>A dotnet-new template for Carter applications.</summary>
<description>A dotnet-new template for Carter applications.</description>
Expand Down
8 changes: 4 additions & 4 deletions template/content/CarterTemplate.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>CarterTemplate</AssemblyName>
<OutputType>Exe</OutputType>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.0.0" />
<PackageReference Include="Carter" Version="3.6.0" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.1.0" />
<PackageReference Include="Carter" Version="3.7.0" />
</ItemGroup>
</Project>

0 comments on commit 1613194

Please sign in to comment.