Skip to content

Commit

Permalink
Ensure we get the latest security updates
Browse files Browse the repository at this point in the history
And remove a redundant reference.
  • Loading branch information
Viir committed May 26, 2021
1 parent 3aea058 commit 640005d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.407'
dotnet-version: '3.1.409'
- name: Try use dotnet core 3
run: dotnet --info
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk' # Options: runtime, sdk
version: '3.1.407'
version: '3.1.409'

- script: dotnet --version

Expand Down
2 changes: 1 addition & 1 deletion implement/elm-fullstack/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace elm_fullstack
{
public class Program
{
static public string AppVersionId => "2021-05-25";
static public string AppVersionId => "2021-05-26";

static int AdminInterfaceDefaultPort => 4000;

Expand Down
11 changes: 5 additions & 6 deletions implement/elm-fullstack/elm-fullstack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>elm_fullstack</RootNamespace>
<AssemblyName>elm-fs</AssemblyName>
<AssemblyVersion>2021.0525.0.0</AssemblyVersion>
<FileVersion>2021.0525.0.0</FileVersion>
<AssemblyVersion>2021.0526.0.0</AssemblyVersion>
<FileVersion>2021.0526.0.0</FileVersion>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -15,15 +15,14 @@

<ItemGroup>
<PackageReference Include="FluffySpoon.AspNet.LetsEncrypt" Version="1.116.0" />
<PackageReference Include="JavaScriptEngineSwitcher.V8" Version="3.10.0" />
<PackageReference Include="JavaScriptEngineSwitcher.V8" Version="3.12.1" />
<PackageReference Include="LibGit2Sharp" Version="0.27.0-preview-0096" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
<PackageReference Include="Microsoft.ClearScript.V8.Native.linux-x64" Version="7.1.0" />
<PackageReference Include="Microsoft.ClearScript.V8.Native.win-x64" Version="7.1.0" />
<PackageReference Include="Microsoft.ClearScript.V8.Native.linux-x64" Version="7.1.2" />
<PackageReference Include="Microsoft.ClearScript.V8.Native.win-x64" Version="7.1.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="3.6.0" />
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="ReadLine" Version="2.0.1" />
<PackageReference Include="System.Collections.Immutable" Version="1.7.1" />
</ItemGroup>
Expand Down

0 comments on commit 640005d

Please sign in to comment.