Browse Source

use net 7

pull/9028/head
Dan Walmsley 4 years ago
parent
commit
6be88c5dcb
  1. 27
      azure-pipelines.yml
  2. 2
      nukebuild/_build.csproj

27
azure-pipelines.yml

@ -34,6 +34,17 @@ jobs:
inputs: inputs:
version: 6.0.401 version: 6.0.401
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 7.0.100-rc.1.22431.12'
inputs:
version: 7.0.100-rc.1.22431.12
- task: CmdLine@2
displayName: 'Install Workloads'
inputs:
script: |
dotnet workload install wasm-tools wasm-experimental
- task: CmdLine@2 - task: CmdLine@2
displayName: 'Run Build' displayName: 'Run Build'
inputs: inputs:
@ -59,6 +70,17 @@ jobs:
displayName: 'Use .NET Core SDK 6.0.401' displayName: 'Use .NET Core SDK 6.0.401'
inputs: inputs:
version: 6.0.401 version: 6.0.401
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 7.0.100-rc.1.22431.12'
inputs:
version: 7.0.100-rc.1.22431.12
- task: CmdLine@2
displayName: 'Install Workloads'
inputs:
script: |
dotnet workload install wasm-tools wasm-experimental
- task: CmdLine@2 - task: CmdLine@2
displayName: 'Generate avalonia-native' displayName: 'Generate avalonia-native'
@ -120,6 +142,11 @@ jobs:
inputs: inputs:
version: 6.0.401 version: 6.0.401
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 7.0.100-rc.1.22431.12'
inputs:
version: 7.0.100-rc.1.22431.12
- task: CmdLine@2 - task: CmdLine@2
displayName: 'Install Workloads' displayName: 'Install Workloads'
inputs: inputs:

2
nukebuild/_build.csproj

@ -6,7 +6,7 @@
<IsPackable>False</IsPackable> <IsPackable>False</IsPackable>
<NoWarn>CS0649;CS0169</NoWarn> <NoWarn>CS0649;CS0169</NoWarn>
<NukeTelemetryVersion>1</NukeTelemetryVersion> <NukeTelemetryVersion>1</NukeTelemetryVersion>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net7.0</TargetFramework>
</PropertyGroup> </PropertyGroup>
<Import Project="..\build\JetBrains.dotMemoryUnit.props" /> <Import Project="..\build\JetBrains.dotMemoryUnit.props" />

Loading…
Cancel
Save