Skip to content

Commit c98ed81

Browse files
pakrymchristothes
andauthored
.NET 6 testing (Azure#24260)
Co-authored-by: Christopher Scott <[email protected]>
1 parent e01b508 commit c98ed81

File tree

118 files changed

+270
-502
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+270
-502
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- Install VS 2019 (Community or higher) and make sure you have the latest updates (https://www.visualstudio.com/).
1010
- Need at least .NET Framework 4.6.1 and 4.7 development tools
1111
- Install the **.NET Core cross-platform development** workloads in VisualStudio
12-
- Install **.NET Core 5.0.301 SDK** for your specific platform. (or a higher version within the 5.0.*** band) (https://dotnet.microsoft.com/download/dotnet-core/5.0)
12+
- Install **.NET Core 6.0.100 SDK** for your specific platform. (or a higher version within the 6.0.*** band) (https://dotnet.microsoft.com/download/dotnet-core/6.0)
1313
- Install the latest version of git (https://git-scm.com/downloads)
1414
- Install [PowerShell](https://docs.microsoft.com/powershell/scripting/install/installing-powershell), version 6 or higher, if you plan to make public API changes or are working with generated code snippets.
1515
- Install [NodeJS](https://nodejs.org/) (14.x.x) if you plan to use [C# code generation](https://github.com/Azure/autorest.csharp).

common/SmokeTests/SmokeTest/SmokeTest.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFrameworks>netcoreapp3.1;net461;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.1;net461;net6.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<StartupObject>SmokeTest.Program</StartupObject>
77
</PropertyGroup>

doc/ApiDocGeneration/assets/docgen.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
3+
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
44
<Description>This is a dummy project used to restore nuget packages used for doc generation</Description>
55
<AssemblyTitle>Doc generation Packages</AssemblyTitle>
66
</PropertyGroup>

eng/Directory.Build.Common.props

+8-11
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,16 @@
2424

2525
<!-- Setup default project properties -->
2626
<PropertyGroup>
27-
<LangVersion>latest</LangVersion>
27+
<LangVersion>9</LangVersion>
2828
<!--
2929
Disable NU5105 NuGet Pack warning that the version is SemVer 2.0.
3030
SemVer 2.0 is supported by NuGet since 3.0.0 (July 2015) in some capacity, and fully since 3.5.0 (October 2016).
3131
-->
3232
<NoWarn>$(NoWarn);NU5105</NoWarn>
33+
<!--
34+
https://github.com/dotnet/roslyn-analyzers/issues/5628
35+
-->
36+
<NoWarn>$(NoWarn);CA1812</NoWarn>
3337
<!--
3438
Disable some FxCop rules
3539
-->
@@ -117,18 +121,11 @@
117121
<RequiredTargetFrameworks Condition="'$(SupportsNetStandard20)' == 'true'">netstandard2.0</RequiredTargetFrameworks>
118122
</PropertyGroup>
119123

120-
<PropertyGroup Condition="'$(IsTestProject)' == 'true' or '$(IsTestSupportProject)' == 'true' or '$(IsSamplesProject)' == 'true'">
121-
<IsPackable>false</IsPackable>
122-
<RequiredTargetFrameworks>netcoreapp3.1;net5.0</RequiredTargetFrameworks>
123-
<!-- Also test net461 on Windows; it's listed first so that coverage reports are for netcoreapp3.1 (the "primary"). -->
124-
<RequiredTargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net461;netcoreapp3.1;net5.0</RequiredTargetFrameworks>
125-
</PropertyGroup>
126-
127-
<PropertyGroup Condition="'$(IsPerfProject)' == 'true' or '$(IsStressProject)' == 'true'">
124+
<PropertyGroup Condition="'$(IsTestProject)' == 'true' or '$(IsTestSupportProject)' == 'true' or '$(IsSamplesProject)' == 'true' or '$(IsPerfProject)' == 'true' or '$(IsStressProject)' == 'true'">
128125
<IsPackable>false</IsPackable>
129-
<RequiredTargetFrameworks>netcoreapp3.1;net5.0</RequiredTargetFrameworks>
126+
<RequiredTargetFrameworks>netcoreapp3.1;net6.0</RequiredTargetFrameworks>
130127
<!-- Also test net461 on Windows; it's listed first so that coverage reports are for netcoreapp3.1 (the "primary"). -->
131-
<RequiredTargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net461;netcoreapp3.1;net5.0</RequiredTargetFrameworks>
128+
<RequiredTargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net461;netcoreapp3.1;net6.0</RequiredTargetFrameworks>
132129
</PropertyGroup>
133130

134131
<ItemGroup Condition="'$(IsMgmtSubLibrary)' == 'true' and !$(MSBuildProjectName.Equals('Azure.ResourceManager.Tests'))">

eng/mgmt/AzSdk.test.reference.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
3+
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
66
<PackageReference Include="Microsoft.Azure.Test.HttpRecorder" Version="[1.13.3, 2.0.0)" />

eng/mgmt/Directory.Build.Mgmt.props

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PkgVersion>0.12.0-dev.20210827.1</PkgVersion>
44
<PkgLocalDir>$(NuGetPackageRoot)\microsoft.internal.netsdkbuild.mgmt.tools\$(PkgVersion)\Sdk</PkgLocalDir>
55
<SymbolPackageFormat>symbols.nupkg</SymbolPackageFormat>
6+
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
67
</PropertyGroup>
78

89
<!-- during execution of tasks tests, this conditional import will satisfy the import resolution. And you will have to manually execute a target to restore the package

eng/pipelines/mgmt.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ variables:
173173
- name: msBuildLogDir
174174
value: msbuildlogs
175175
- name: loggingArgs
176-
value: /clp:ShowtimeStamp /flp:LogFile=$(msBuildLogDir)/msbuild.normal.log;Verbosity=normal /flp1:Summary;Verbosity=minimal;LogFile=$(msBuildLogDir)/msbuild.sum.log /flp2:warningsonly;logfile=$(msBuildLogDir)/msbuild.wrn.log /flp3:errorsonly;logfile=$(msBuildLogDir)/msbuild.err.log
176+
value: /clp:ShowtimeStamp /flp:Summary;Verbosity=minimal;LogFile=$(msBuildLogDir)/msbuild.sum.log /flp1:warningsonly;logfile=$(msBuildLogDir)/msbuild.wrn.log /flp2:errorsonly;logfile=$(msBuildLogDir)/msbuild.err.log
177177
- name: RPScopeArgs
178178
value: /p:PullRequestNumber=$(system.pullrequest.pullrequestnumber) /p:RepoHtmlUrl=https://github.com/$(build.repository.id) /p:CIBuildId=$(OfficialBuildId)
179179
- name: timeoutInMinutes

eng/pipelines/templates/jobs/ci.mgmt.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ jobs:
22
- job: Build
33
timeoutInMinutes: 100
44
pool:
5-
vmImage: windows-2019
5+
name: azsdk-pool-mms-win-2019-general
6+
vmImage: MMS2019
67
steps:
78
#- script: "echo $(system.pullrequest.pullrequestnumber), https://github.com/$(build.repository.id), https://github.com/$(build.repository.ID)"
9+
- template: /eng/pipelines/templates/steps/install-dotnet.yml
810
- script: |
911
if "$(BuildConfiguration)" == "Release" (set SkipTests=true) else (set SkipTests=false)
1012
dotnet msbuild mgmt.proj /v:m /t:CreateNugetPackage /p:Configuration=$(BuildConfiguration) /p:SkipTests=%SkipTests% /p:PackageOutputPath=$(Build.ArtifactStagingDirectory) /p:Scope=${{parameters.Scope}} /p:ForPublishing=$(ShouldPublish) $(loggingArgs) $(RPScopeArgs)"
@@ -43,11 +45,11 @@ jobs:
4345
maxParallel: $[ variables['MaxParallelTestJobs'] ]
4446
matrix:
4547
Linux:
46-
Pool: Azure Pipelines
47-
OSVmImage: "ubuntu-20.04"
48+
Pool: azsdk-pool-mms-ubuntu-2004-general
49+
OSVmImage: "MMSUbuntu20.04"
4850
Windows:
49-
Pool: Azure Pipelines
50-
OSVmImage: "windows-2019"
51+
Pool: azsdk-pool-mms-win-2019-general
52+
OSVmImage: MMS2019
5153
MacOs:
5254
Pool: Azure Pipelines
5355
OSVmImage: "macOS-10.15"
@@ -59,6 +61,7 @@ jobs:
5961
parameters:
6062
AgentImage: $(OSVmImage)
6163
- script: "echo $(system.pullrequest.pullrequestnumber), http://github.com/$(build.repository.id), http://github.com/$(build.repository.ID)"
64+
- template: /eng/pipelines/templates/steps/install-dotnet.yml
6265
- script: "dotnet msbuild mgmt.proj /v:n /t:RunTests /p:Scope=${{parameters.Scope}} /p:ForPublishing=$(ShouldPublish) /clp:ShowtimeStamp $(RPScopeArgs)"
6366
displayName: "Build & Run Tests"
6467
- task: PublishTestResults@2
@@ -77,7 +80,8 @@ jobs:
7780
dependsOn:
7881
- Build
7982
pool:
80-
vmImage: windows-2019
83+
name: azsdk-pool-mms-win-2019-general
84+
vmImage: MMS2019
8185
steps:
8286
- task: UsePythonVersion@0
8387
displayName: "Use Python 3.6"

eng/pipelines/templates/jobs/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
inputs:
160160
command: custom
161161
custom: 'tool'
162-
arguments: 'install --global --add-source "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json" --version "1.0.0-dev.20210730.3" "Azure.Sdk.Tools.SnippetGenerator"'
162+
arguments: 'install --global --add-source "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json" --version "1.0.0-dev.20211119.1" "Azure.Sdk.Tools.SnippetGenerator"'
163163
workingDirectory: '$(Agent.BuildDirectory)'
164164
- task: PowerShell@2
165165
displayName: "Verify generated code"

eng/pipelines/templates/jobs/smoke.tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
Windows_Net50 (AzureCloud):
7979
Pool: "azsdk-pool-mms-win-2019-general"
8080
OSVmImage: "MMS2019"
81-
TestTargetFramework: net5.0
81+
TestTargetFramework: net6.0
8282
SubscriptionConfiguration: $(sub-config-azure-cloud-test-resources)
8383
ArmTemplateParameters: $(azureCloudArmParameters)
8484
Location: "westus"

eng/pipelines/templates/stages/platform-matrix.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"TestTargetFramework": [
2222
"netcoreapp3.1",
2323
"net461",
24-
"net5.0"
24+
"net6.0"
2525
],
2626
"AdditionalTestArguments": [
2727
"/p:UseProjectReferenceToAzureClients=false",

eng/pipelines/templates/steps/install-dotnet.yml

+23-13
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,30 @@ steps:
77
inputs:
88
solution: eng/InstallDevopsLogger.proj
99
msbuildArguments: /p:WorkFolder="$(Agent.WorkFolder)" /p:BuildDirectory="$(Agent.BuildDirectory)"
10-
# Installation steps need to be uncommented when switching to a newer SDK that's not available on DevOps agents
11-
# - task: UseDotNet@2
12-
# displayName: 'Use .NET Core SDK'
13-
# inputs:
14-
# useGlobalJson: true
15-
# performMultiLevelLookup: true
16-
# - task: UseDotNet@2
17-
# condition: ne(variables['Agent.OS'], 'Windows_NT') # Windows supports MultiLevelLookup and doesn't need explicit framework installation
18-
# displayName: 'Use .NET Core 3.1 runtime'
19-
# inputs:
20-
# packageType: runtime
21-
# version: "3.1.x"
10+
#Installation steps need to be uncommented when switching to a newer SDK that's not available on DevOps agents
11+
- task: UseDotNet@2
12+
displayName: 'Use .NET Core SDK'
13+
inputs:
14+
useGlobalJson: true
15+
performMultiLevelLookup: true
16+
# test-proxy requires net5.0
17+
- task: UseDotNet@2
18+
condition: ne(variables['Agent.OS'], 'Windows_NT') # Windows supports MultiLevelLookup and doesn't need explicit framework installation
19+
displayName: 'Use .NET Core 5.0 runtime'
20+
inputs:
21+
packageType: runtime
22+
performMultiLevelLookup: true
23+
version: "5.0.x"
24+
- task: UseDotNet@2
25+
condition: ne(variables['Agent.OS'], 'Windows_NT') # Windows supports MultiLevelLookup and doesn't need explicit framework installation
26+
displayName: 'Use .NET Core 3.1 SDK'
27+
inputs:
28+
# AspNetCore runtime pack can't be installed outside of SDK and we need it for intergation tests
29+
packageType: sdk
30+
performMultiLevelLookup: true
31+
version: "3.1.x"
2232
- task: Cache@2
2333
inputs:
2434
key: 'nuget | "$(Agent.OS)" | $(Build.SourcesDirectory)/eng/Packages.Data.props | ${{parameters.NuGetCacheKey}}'
2535
path: $(NUGET_PACKAGES)
26-
displayName: Cache NuGet packages
36+
displayName: Cache NuGet packages

eng/scripts/Update-Snippets.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (-not (Test-Path Env:TF_BUILD))
2525

2626
dotnet tool install --global `
2727
--add-source "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json" `
28-
--version "1.0.0-dev.20210730.3" `
28+
--version "1.0.0-dev.20211119.1" `
2929
"Azure.Sdk.Tools.SnippetGenerator"
3030
}
3131
else

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"Microsoft.Build.Traversal": "3.0.23"
44
},
55
"sdk": {
6-
"version": "5.0.301",
6+
"version": "6.0.100",
77
"rollForward": "feature"
88
}
99
}

sdk/advisor/Microsoft.Azure.Management.Advisor/tests/Microsoft.Azure.Management.Advisor.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Version>1.0.0</Version>
66
<Description>Advisor.Tests Class library</Description>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
8-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
8+
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<ItemGroup>

sdk/attestation/Azure.Security.Attestation/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var policySetToken = new AttestationToken(
2424
BinaryData.FromObjectAsJson(new StoredAttestationPolicy { AttestationPolicy = attestationPolicy }),
2525
signingKey);
2626

27-
using var shaHasher = SHA256Managed.Create();
27+
using var shaHasher = SHA256.Create();
2828
byte[] attestationPolicyHash = shaHasher.ComputeHash(Encoding.UTF8.GetBytes(policySetToken.Serialize()));
2929

3030
Debug.Assert(attestationPolicyHash.SequenceEqual(setResult.Value.PolicyTokenHash.ToArray()));

sdk/attestation/Azure.Security.Attestation/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ var policySetToken = new AttestationToken(
229229
BinaryData.FromObjectAsJson(new StoredAttestationPolicy { AttestationPolicy = attestationPolicy }),
230230
signingKey);
231231

232-
using var shaHasher = SHA256Managed.Create();
232+
using var shaHasher = SHA256.Create();
233233
byte[] attestationPolicyHash = shaHasher.ComputeHash(Encoding.UTF8.GetBytes(policySetToken.Serialize()));
234234

235235
Debug.Assert(attestationPolicyHash.SequenceEqual(setResult.Value.PolicyTokenHash.ToArray()));

sdk/attestation/Azure.Security.Attestation/src/AttestationAdministrationClient.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ private async Task<AttestationResponse<string>> GetPolicyInternalAsync(Attestati
208208
/// BinaryData.FromObjectAsJson(new StoredAttestationPolicy { AttestationPolicy = attestationPolicy }),
209209
/// signingKey);
210210
///
211-
/// using var shaHasher = SHA256Managed.Create();
211+
/// using var shaHasher = SHA256.Create();
212212
/// byte[] attestationPolicyHash = shaHasher.ComputeHash(Encoding.UTF8.GetBytes(policySetToken.Serialize()));
213213
///
214214
/// Debug.Assert(attestationPolicyHash.SequenceEqual(setResult.Value.PolicyTokenHash.ToArray()));
@@ -292,7 +292,7 @@ public virtual AttestationResponse<PolicyModificationResult> SetPolicy(
292292
/// BinaryData.FromObjectAsJson(new StoredAttestationPolicy { AttestationPolicy = attestationPolicy }),
293293
/// signingKey);
294294
///
295-
/// using var shaHasher = SHA256Managed.Create();
295+
/// using var shaHasher = SHA256.Create();
296296
/// byte[] attestationPolicyHash = shaHasher.ComputeHash(Encoding.UTF8.GetBytes(policySetToken.Serialize()));
297297
///
298298
/// Debug.Assert(attestationPolicyHash.SequenceEqual(setResult.Value.PolicyTokenHash.ToArray()));

sdk/attestation/Azure.Security.Attestation/tests/PolicyGetSetTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public async Task SetPolicyUnsecuredAad()
111111
var policySetResult = await adminclient.SetPolicyAsync(AttestationType.OpenEnclave, disallowDebugging);
112112

113113
// The SetPolicyAsync API will create an UnsecuredAttestationToken to transmit the policy.
114-
var shaHasher = SHA256Managed.Create();
114+
var shaHasher = SHA256.Create();
115115
var policySetToken = new AttestationToken(BinaryData.FromObjectAsJson(new StoredAttestationPolicy { AttestationPolicy = disallowDebugging }));
116116

117117
disallowDebuggingHash = shaHasher.ComputeHash(Encoding.UTF8.GetBytes(policySetToken.Serialize()));
@@ -177,7 +177,7 @@ public async Task SetPolicySecured(AttestationAdministrationClient adminClient,
177177
{
178178
var policySetResult = await adminClient.SetPolicyAsync(AttestationType.OpenEnclave, disallowDebugging, new AttestationTokenSigningKey(rsaKey, x509Certificate));
179179

180-
var shaHasher = SHA256Managed.Create();
180+
var shaHasher = SHA256.Create();
181181

182182
var policySetToken = new AttestationToken(
183183
BinaryData.FromObjectAsJson(new StoredAttestationPolicy { AttestationPolicy = disallowDebugging }), new AttestationTokenSigningKey(rsaKey, x509Certificate));

sdk/attestation/Azure.Security.Attestation/tests/Samples/AttestationServiceAttestationSamples.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public async Task SettingAttestationPolicy()
245245
BinaryData.FromObjectAsJson(new StoredAttestationPolicy { AttestationPolicy = attestationPolicy }),
246246
signingKey);
247247

248-
using var shaHasher = SHA256Managed.Create();
248+
using var shaHasher = SHA256.Create();
249249
byte[] attestationPolicyHash = shaHasher.ComputeHash(Encoding.UTF8.GetBytes(policySetToken.Serialize()));
250250

251251
Debug.Assert(attestationPolicyHash.SequenceEqual(setResult.Value.PolicyTokenHash.ToArray()));

sdk/azurestack/Microsoft.AzureStack.Management.AzureBridge.Admin/tests/Microsoft.AzureStack.Management.AzureBridge.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<!-- <PropertyGroup> -->
12-
<!-- <TargetFrameworks>netcoreapp1.1</TargetFrameworks> -->
12+
<!-- <TargetFrameworks>netcoreapp3.1</TargetFrameworks> -->
1313
<!-- </PropertyGroup> -->
1414

1515
<ItemGroup>

sdk/azurestack/Microsoft.AzureStack.Management.Commerce.Admin/tests/Microsoft.AzureStack.Management.Commerce.Tests.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
<AssemblyName>Commerce.Admin.Tests</AssemblyName>
77
<VersionPrefix>1.0.0</VersionPrefix>
88
</PropertyGroup>
9-
<!--<PropertyGroup>
10-
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
11-
</PropertyGroup>-->
9+
1210

1311
<ItemGroup>
1412
<ProjectReference Include="..\src\Microsoft.AzureStack.Management.Commerce.Admin.csproj" />

sdk/azurestack/Microsoft.AzureStack.Management.Compute.Admin/tests/Microsoft.AzureStack.Management.Compute.Tests.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
<AssemblyName>Compute.Admin.Tests</AssemblyName>
77
<VersionPrefix>1.0.0</VersionPrefix>
88
</PropertyGroup>
9-
<!--<PropertyGroup>
10-
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
11-
</PropertyGroup>-->
9+
1210

1311
<ItemGroup>
1412
<ProjectReference Include="..\src\Microsoft.AzureStack.Management.Compute.Admin.csproj" />

sdk/azurestack/Microsoft.AzureStack.Management.Gallery.Admin/tests/Microsoft.AzureStack.Management.Gallery.Tests.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
<AssemblyName>Gallery.Admin.Tests</AssemblyName>
77
<VersionPrefix>1.0.0</VersionPrefix>
88
</PropertyGroup>
9-
<!--<PropertyGroup>
10-
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
11-
</PropertyGroup>-->
9+
1210

1311
<ItemGroup>
1412
<ProjectReference Include="..\src\Microsoft.AzureStack.Management.Gallery.Admin.csproj" />

sdk/azurestack/Microsoft.AzureStack.Management.InfrastructureInsights.Admin/tests/Microsoft.AzureStack.Management.InfrastructureInsights.Tests.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
<AssemblyName>InfrastructureInsights.Tests</AssemblyName>
77
<VersionPrefix>1.0.0</VersionPrefix>
88
</PropertyGroup>
9-
<!--<PropertyGroup>
10-
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
11-
</PropertyGroup>-->
9+
1210

1311
<ItemGroup>
1412
<ProjectReference Include="..\src\Microsoft.AzureStack.Management.InfrastructureInsights.Admin.csproj" />

sdk/azurestack/Microsoft.AzureStack.Management.KeyVault.Admin/tests/KeyVault.Tests.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
<AssemblyName>KeyVault.Admin.Tests</AssemblyName>
77
<VersionPrefix>1.0.0</VersionPrefix>
88
</PropertyGroup>
9-
<!--<PropertyGroup>
10-
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
11-
</PropertyGroup>-->
129

1310
<ItemGroup>
1411
<ProjectReference Include="..\src\Microsoft.AzureStack.Management.KeyVault.Admin.csproj" />

sdk/azurestack/Microsoft.AzureStack.Management.Network.Admin/tests/Microsoft.AzureStack.Management.Network.Tests.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
<AssemblyName>Network.Admin.Tests</AssemblyName>
77
<VersionPrefix>1.0.0</VersionPrefix>
88
</PropertyGroup>
9-
<!--<PropertyGroup>
10-
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
11-
</PropertyGroup>-->
9+
1210

1311
<ItemGroup>
1412
<ProjectReference Include="..\src\Microsoft.AzureStack.Management.Network.Admin.csproj" />

sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/Microsoft.AzureStack.Management.Storage.Admin.Tests.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
<AssemblyName>Storage.Admin.Tests</AssemblyName>
77
<VersionPrefix>1.0.0</VersionPrefix>
88
</PropertyGroup>
9-
<!--<PropertyGroup>
10-
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
11-
</PropertyGroup>-->
9+
1210

1311
<ItemGroup>
1412
<ProjectReference Include="..\src\Microsoft.AzureStack.Management.Storage.Admin.csproj" />

sdk/azurestack/Microsoft.AzureStack.Management.Subscription/tests/Microsoft.AzureStack.Management.Subscription.Tests.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
<AssemblyName>Subscription.Tests</AssemblyName>
77
<VersionPrefix>1.0.0</VersionPrefix>
88
</PropertyGroup>
9-
<!--<PropertyGroup>
10-
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
11-
</PropertyGroup>-->
9+
1210
<ItemGroup>
1311
<ProjectReference Include="..\src\Microsoft.AzureStack.Management.Subscription.csproj" />
1412
</ItemGroup>

0 commit comments

Comments
 (0)