File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
runtime-testsuite/resources/org/antlr/v4/test/runtime/helpers Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33echo " installing .Net SDK..."
4- wget https://packages.microsoft.com/config/ubuntu/16 .04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
4+ wget https://packages.microsoft.com/config/ubuntu/20 .04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
55sudo dpkg -i packages-microsoft-prod.deb
6+ rm packages-microsoft-prod.deb
67sudo apt-get update; \
78 sudo apt-get install -y apt-transport-https && \
89 sudo apt-get update && \
9- sudo apt-get install -y dotnet-sdk-3.1
10- export PATH=$PATH :~ /.dotnet
10+ sudo apt-get install -y dotnet-sdk-6.0
1111echo " done installing .Net SDK"
Original file line number Diff line number Diff line change @@ -43,13 +43,11 @@ jobs:
4343 uses : actions/setup-node@v2
4444 with :
4545 node-version : ' 14'
46- - name : Setup Dotnet 3.1 and 5.0
46+ - name : Setup Dotnet
4747 if : matrix.TARGET == 'csharp'
4848 uses : actions/setup-dotnet@v1
4949 with :
50- dotnet-version : |
51- 3.1.x
52- 5.0.x
50+ dotnet-version : ' 6.0.x'
5351# fails due to os (Linux only), use global install
5452# - name: Setup Dart 2.12.1
5553# uses: dart-lang/setup-dart@v1
Original file line number Diff line number Diff line change 11\<Project Sdk="Microsoft.NET.Sdk">
22
33 \<PropertyGroup>
4- \<TargetFramework>netcoreapp3.1 \</TargetFramework>
4+ \<TargetFramework>net6.0 \</TargetFramework>
55 \<NoWarn>$(NoWarn);CS3021\</NoWarn>
66 \<AssemblyName>Test\</AssemblyName>
77 \<OutputType>Exe\</OutputType>
You can’t perform that action at this time.
0 commit comments