Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/build-test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

env:
BUILD_C_SHARP: ${{ matrix.cxx_compiler == 'msvc-2022' && matrix.build_system == 'CMake' }}
PYTEST_C_SHARP_ARGS: #--run-c-sharp-samples --csharp-sample-dir=..\source\x64\${{ matrix.config }}
PYTEST_C_SHARP_ARGS: --run-c-sharp-samples --csharp-sample-dir=..\source\x64\${{ matrix.config }}

steps:
- name: Checkout
Expand Down Expand Up @@ -197,6 +197,7 @@ jobs:
run: |
call "${{matrix.vc-path}}\Common7\Tools\VsDevCmd.bat" -arch=amd64 ${{ fromJSON('["", "-vcvars_ver=14.2"]')[matrix.cxx_compiler == 'msvc-2019'] }}
call ./scripts/mrbind/generate_win.bat -B --trace TARGET=csharp CSHARP_MODE=${{matrix.config}}
dotnet build examples/c-sharp-examples

- name: Build
shell: cmd
Expand Down
2 changes: 1 addition & 1 deletion examples/c-sharp-examples/c-sharp-examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<ItemGroup>
<Reference Include="MRDotNet2">
<HintPath>..\..\source\x64\$(Configuration)\MRDotNet2.dll</HintPath>
<HintPath>..\source\x64\$(Configuration)\MRDotNet2.dll</HintPath>
</Reference>
</ItemGroup>

Expand Down
Loading