Skip to content

Commit

Permalink
Merge pull request #61 from ucdavis/srk/net6-upgrade
Browse files Browse the repository at this point in the history
upgrade AD419 to net6
  • Loading branch information
srkirkland authored Apr 28, 2022
2 parents 78240af + 5b3bc69 commit e09271e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/AD419/bin/Debug/netcoreapp3.1/AD419.dll",
"program": "${workspaceFolder}/src/AD419/bin/Debug/net6.0/AD419.dll",
"args": [],
"cwd": "${workspaceFolder}/src/AD419",
"stopAtEntry": false,
Expand Down
10 changes: 10 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ variables:
buildConfiguration: 'Release'

steps:

- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '6.x'

- task: NodeTool@0
inputs:
versionSpec: '14.x'

- task: NuGetToolInstaller@1

- task: NuGetCommand@2
Expand Down
10 changes: 5 additions & 5 deletions src/AD419/AD419.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
<IsPackable>false</IsPackable>
Expand All @@ -10,10 +10,10 @@
<UserSecretsId>e0f634ab-2b3a-4b0f-8287-8765a71f6cc2</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.35" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="3.1.4" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="1.1.3" />
<PackageReference Include="Dapper" Version="2.0.123" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.3" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="6.0.3" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="4.1.0" />
</ItemGroup>
<ItemGroup>
<!-- Don't publish the SPA source files, but do show them in the project files list -->
Expand Down

0 comments on commit e09271e

Please sign in to comment.