Skip to content

Commit

Permalink
Updated dependencies to .NET 5 release and fixed documentation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ivancea committed Nov 11, 2020
1 parent 1731aae commit c593f87
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion Backend/Objects/Changes/Change.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public abstract class Change
/// <param name="objectType">The changed object type.</param>
/// <param name="type">The type of the change.</param>
/// <param name="objectName">The name of the changed object.</param>
/// <param name="user">The user that made the change.</param>
protected Change(ChangeObjectType objectType, ChangeType type, string objectName)
{
ObjectType = objectType;
Expand Down
2 changes: 1 addition & 1 deletion Backend/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IOptions

if (env.IsDevelopment())
{
app.UseCors("DevelopmentFrontend");
app.UseCors("DevelopmentFrontend");
}

app.UseRouting();
Expand Down
7 changes: 4 additions & 3 deletions git-monitor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@
<DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes>
<AnalysisLevel>latest</AnalysisLevel>
<CodeAnalysisRuleSet>StyleCop.ruleset</CodeAnalysisRuleSet>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AspNetCore.Authentication.Basic" Version="3.1.0" />
<PackageReference Include="AspNetCore.Authentication.Basic" Version="3.1.1" />
<PackageReference Include="LibGit2Sharp" Version="0.26.2" />
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="5.0.0-rc.2.20475.17" />
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="5.0.0-rc.2.20475.5" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="5.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit c593f87

Please sign in to comment.