Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .ci/dotnet_run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
output=$(dotnet ./openxml-validator/bin/Release/net8.0/Program.dll --$2 $1)
output=$(dotnet ./openxml-validator/bin/Release/net10.0/Program.dll --$2 $1)
echo $output
echo ""
if [[ $output == *"is not valid"* ]]; then
Expand Down
Binary file modified .ci/validator.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
run: |
mkdir -p $HOME/dotnet
cd $HOME/dotnet
wget https://download.visualstudio.microsoft.com/download/pr/4e3b04aa-c015-4e06-a42e-05f9f3c54ed2/74d1bb68e330eea13ecfc47f7cf9aeb7/dotnet-sdk-8.0.404-linux-x64.tar.gz
tar -xf dotnet-sdk-8.0.404-linux-x64.tar.gz
wget https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100/dotnet-sdk-10.0.100-linux-x64.tar.gz
tar -xf dotnet-sdk-10.0.100-linux-x64.tar.gz
- name: Test and validate examples
run: |
Expand Down
Loading