Skip to content

Commit

Permalink
Update dotnet framework and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Viir committed Jan 3, 2024
1 parent ae2fd88 commit 362472f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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 @@ -11,7 +11,7 @@ jobs:
environment: [windows-2022]
include:
- environment: windows-2022
publish-runtime-id: win10-x64
publish-runtime-id: win-x64

runs-on: ${{ matrix.environment }}

Expand Down
2 changes: 1 addition & 1 deletion implement/alternate-ui/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Developers use the parsing library to make ratting, mining, and mission running

These instructions to run the alternate UI start with the program source code. Here we use a tool called `elm-time` to compile the program from source code and run it as a web server.

Download the zip archive from <https://github.com/elm-time/elm-time/releases/download/v2023-06-18/elm-time-bin-v2023-06-18-win10-x64.zip> and extract it.
Download the zip archive from <https://github.com/elm-time/elm-time/releases/download/v2024-01-01/elm-time-bin-v2024-01-01-win-x64.zip> and extract it.

The extracted files contain the `elm-time` tool used to run Elm programs.

Expand Down
4 changes: 2 additions & 2 deletions implement/read-memory-64-bit/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
Expand All @@ -10,7 +10,7 @@ namespace read_memory_64_bit;

class Program
{
static string AppVersionId => "2023-01-03";
static string AppVersionId => "2024-01-03";

static int Main(string[] args)
{
Expand Down
6 changes: 3 additions & 3 deletions implement/read-memory-64-bit/read-memory-64-bit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>read_memory_64_bit</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.0.2" />
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
</ItemGroup>

</Project>

0 comments on commit 362472f

Please sign in to comment.