Skip to content

Commit

Permalink
Merge pull request #26 from tntwist/dev
Browse files Browse the repository at this point in the history
v3.0.9
  • Loading branch information
tntwist authored Jul 31, 2020
2 parents 3ae3faa + cb86127 commit c4cf174
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ In order to see the logs of the Asp.Net Core app inside the log stream of Applic

``<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.14.0" />``

1. Register the Applications Inisghts services in the ``Statup.cs`` of your web app
1. Register the Applications Insights services in the ``Statup.cs`` of your web app
```csharp
services.AddApplicationInsightsTelemetry();
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>3.0.8</Version>
<Version>3.0.9</Version>
<PackageId>NL.Serverless.AspNetCore.AzureFunctionsHost</PackageId>
<Title>ASP.Net Core Host for Azure Functions v3</Title>
<Authors>Nico Lachmuth</Authors>
Expand Down Expand Up @@ -32,7 +32,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.14.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.5" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.6" />
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.0.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>NL.Serverless.AspNetCore.AzureFunctionsHost</id>
<version>3.0.8</version>
<version>3.0.9</version>
<title>ASP.Net Core Host for Azure Functions v3</title>
<authors>Nico Lachmuth</authors>
<owners>Nico Lachmuth</owners>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
<Version>3.0.8</Version>
<Version>3.0.9</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.8" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.9" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<Version>3.0.8</Version>
<Version>3.0.9</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.14.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.5" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.6" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.6" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.3" />
<PackageReference Include="NSwag.AspNetCore" Version="13.6.2" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion template/NL.Serverless.Template.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>3.0.8</PackageVersion>
<PackageVersion>3.0.9</PackageVersion>
<PackageId>NL.Serverless.AspNetCore.Template</PackageId>
<Title>Serverless AspNet Core Template</Title>
<Authors>Nico Lachmuth</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.8" />
<PackageReference Include="NL.Serverless.AspNetCore.AzureFunctionsHost" Version="3.0.8" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.9" />
<PackageReference Include="NL.Serverless.AspNetCore.AzureFunctionsHost" Version="3.0.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Your.New.ProjectName.WebApp\Your.New.ProjectName.WebApp.csproj" />
Expand Down

0 comments on commit c4cf174

Please sign in to comment.