Merged PR 29: Upgrading library from .NET Core to .NET 5...
7ebb3d81
DarthPedro
committed
succeeded
3 changed files
D20Tek.Common.csproj
/D20Tek.Common/D20Tek.Common.csproj-3+3
/D20Tek.Common/D20Tek.Common.csproj
Add comment 1 <Project Sdk="Microsoft.NET.Sdk">
Add comment 2
Add comment 3 <PropertyGroup>
Add comment 4 Minus   <TargetFramework>netcoreapp3.1</TargetFramework>
Add comment 4 Plus   <TargetFramework>net5.0</TargetFramework>
Add comment 5 <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Add comment 6 Minus   <Version>3.1.0</Version>
Add comment 6 Plus   <Version>3.2.0</Version>
Add comment 7 <Authors>DarthPedro</Authors>
Add comment 8 <Company>DarthPedro</Company>
Add comment 9 <Product>d20Tek Common Library</Product>
Add comment 10 <Description>A library of common classes, interfaces, and datatypes shared across various d20Tek libraries and services. Making it easier to share types when needed, even across web service boundaries.</Description>
Add comment 11 <Copyright>Copyright (c) 2020 - DarthPedro</Copyright>
Add comment 12 Minus   <PackageReleaseNotes>First version of the library, includes shared types from DiceNotation library.</PackageReleaseNotes>
Add comment 12 Plus   <PackageReleaseNotes>Upgrading library to .NET 5.</PackageReleaseNotes>
Add comment 13 <AssemblyVersion>3.1.0.0</AssemblyVersion>
Add comment 14 </PropertyGroup>
Add comment 15
D20Tek.Common.UnitTests.csproj
/D20Tek.Common.UnitTests/D20Tek.Common.UnitTests.csproj-1+1
/D20Tek.Common.UnitTests/D20Tek.Common.UnitTests.csproj
Add comment 1 <Project Sdk="Microsoft.NET.Sdk">
Add comment 2
Add comment 3 <PropertyGroup>
Add comment 4 Minus   <TargetFramework>netcoreapp3.1</TargetFramework>
Add comment 4 Plus   <TargetFramework>net5.0</TargetFramework>
Add comment 5
Add comment 6 <IsPackable>false</IsPackable>
Add comment 7 </PropertyGroup>
azure-pipelines.yml
/azure-pipelines.yml-2+2
/azure-pipelines.yml
Add comment 16 # all of the variables used by this pipeline and dependent templates.
Add comment 17 variables:
Add comment 18 buildConfiguration: 'Release'
Add comment 19 Minus   dotnetSdkVersion: '3.1.100'
Add comment 19 Plus   dotnetSdkVersion: '5.0.x'
Add comment 20 releaseBranchName: 'master'
Add comment 21 localPackageFeed: 'd20Tek'
Add comment 22 # semanticVersion counter is automatically incremented by one in each execution of pipeline
Add comment 23 # second parameter is seed value to reset to every time the referenced majorMinorVersion is changed
Add comment 24 Minus   majorMinorVersion: 3.1
Add comment 24 Plus   majorMinorVersion: 3.2
Add comment 25 semanticVersion: $[counter(variables['majorMinorVersion'], 0)]
Add comment 26
Add comment 27 # define the image to use for the whole pipline... can be overridden by specific jobs.