Skip to content

Commit

Permalink
Merge pull request #114 from radixdlt/fix/cs-type-alias
Browse files Browse the repository at this point in the history
Fix for unsupported type alias in C#
  • Loading branch information
mstrug-rdx authored Apr 22, 2024
2 parents 325c0a6 + b7b7fb8 commit b44005e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ jobs:
- name: Setup .NET SDK
uses: RDXWorks-actions/setup-dotnet@5a3fa01c67e60dba8f95e2878436c7151c4b5f01
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: Configure Version
run: |
VERSION=${{ inputs.cs-version }}
Expand Down
4 changes: 2 additions & 2 deletions interop/csharp/RadixDlt.RadixEngineToolkit.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NuspecFile>RadixDlt.RadixEngineToolkit.nuspec</NuspecFile>
<LangVersion>11</LangVersion>
<LangVersion>12</LangVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
Expand Down
2 changes: 1 addition & 1 deletion interop/csharp/RadixDlt.RadixEngineToolkit.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
<!-- Windows Targets -->
<file src="native/x86_64-pc-windows-gnu/radix_engine_toolkit_uniffi.dll" target="runtimes/win-x64/native/radix_engine_toolkit_uniffi.dll" />

<file src="bin\Release\net7.0\RadixDlt.RadixEngineToolkit.dll" target="lib\net7.0" />
<file src="bin\Release\net8.0\RadixDlt.RadixEngineToolkit.dll" target="lib\net8.0" />
</files>
</package>

0 comments on commit b44005e

Please sign in to comment.