Skip to content

Commit 1a063df

Browse files
One project (two frameworks), one test.
1 parent 1b3d6e8 commit 1a063df

16 files changed

+10
-237
lines changed

experiments/Azure.Experiments/Azure.Experiments.sln

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,24 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.27004.2002
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Standard.Tests", "Standard.Tests\Standard.Tests.csproj", "{76A7A65A-99E9-44B3-A5C4-404905AABAF5}"
7-
EndProject
8-
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Shared.Tests", "Shared.Tests\Shared.Tests.shproj", "{4E5EA79D-BB89-42F1-A46D-3289F70FC26D}"
9-
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNet.Tests", "DotNet.Tests\DotNet.Tests.csproj", "{CC3A34AA-D62B-4352-8A44-5E3380216905}"
11-
EndProject
126
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Experiments", "Azure.Experiments\Azure.Experiments.csproj", "{1D707014-5D2B-4C4E-9D1A-3A449A234329}"
137
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{636E4926-8F71-4D98-8169-4261AD4B754D}"
9+
EndProject
1410
Global
15-
GlobalSection(SharedMSBuildProjectFiles) = preSolution
16-
Shared.Tests\Shared.Tests.projitems*{4e5ea79d-bb89-42f1-a46d-3289f70fc26d}*SharedItemsImports = 13
17-
Shared.Tests\Shared.Tests.projitems*{cc3a34aa-d62b-4352-8a44-5e3380216905}*SharedItemsImports = 4
18-
EndGlobalSection
1911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2012
Debug|Any CPU = Debug|Any CPU
2113
Release|Any CPU = Release|Any CPU
2214
EndGlobalSection
2315
GlobalSection(ProjectConfigurationPlatforms) = postSolution
24-
{76A7A65A-99E9-44B3-A5C4-404905AABAF5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25-
{76A7A65A-99E9-44B3-A5C4-404905AABAF5}.Debug|Any CPU.Build.0 = Debug|Any CPU
26-
{76A7A65A-99E9-44B3-A5C4-404905AABAF5}.Release|Any CPU.ActiveCfg = Release|Any CPU
27-
{76A7A65A-99E9-44B3-A5C4-404905AABAF5}.Release|Any CPU.Build.0 = Release|Any CPU
28-
{CC3A34AA-D62B-4352-8A44-5E3380216905}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29-
{CC3A34AA-D62B-4352-8A44-5E3380216905}.Debug|Any CPU.Build.0 = Debug|Any CPU
30-
{CC3A34AA-D62B-4352-8A44-5E3380216905}.Release|Any CPU.ActiveCfg = Release|Any CPU
31-
{CC3A34AA-D62B-4352-8A44-5E3380216905}.Release|Any CPU.Build.0 = Release|Any CPU
3216
{1D707014-5D2B-4C4E-9D1A-3A449A234329}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3317
{1D707014-5D2B-4C4E-9D1A-3A449A234329}.Debug|Any CPU.Build.0 = Debug|Any CPU
3418
{1D707014-5D2B-4C4E-9D1A-3A449A234329}.Release|Any CPU.ActiveCfg = Release|Any CPU
3519
{1D707014-5D2B-4C4E-9D1A-3A449A234329}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{636E4926-8F71-4D98-8169-4261AD4B754D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{636E4926-8F71-4D98-8169-4261AD4B754D}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{636E4926-8F71-4D98-8169-4261AD4B754D}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{636E4926-8F71-4D98-8169-4261AD4B754D}.Release|Any CPU.Build.0 = Release|Any CPU
3624
EndGlobalSection
3725
GlobalSection(SolutionProperties) = preSolution
3826
HideSolutionNode = FALSE

experiments/Azure.Experiments/Azure.Experiments/Azure.Experiments.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
<PackageReference Include="Microsoft.Azure.Management.Compute" Version="16.3.0" />
1313
<PackageReference Include="Microsoft.Azure.Management.Network" Version="15.0.0-preview" />
1414
<PackageReference Include="Microsoft.Azure.Management.ResourceManager" Version="1.6.0-preview" />
15-
<PackageReference Include="System.Net.Http" Version="4.3.0" />
1615
</ItemGroup>
1716

18-
<Import Project="..\Shared\Azure.Experiments.Shared.projitems" Label="Shared" />
17+
<ItemGroup Condition="'$(TargetFramework)' == 'net452'">
18+
<PackageReference Include="System.Net.Http" Version="4.3.0" />
19+
</ItemGroup>
1920

2021
</Project>

experiments/Azure.Experiments/DotNet.Tests/DotNet.Tests.csproj

Lines changed: 0 additions & 105 deletions
This file was deleted.

experiments/Azure.Experiments/DotNet.Tests/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 36 deletions
This file was deleted.

experiments/Azure.Experiments/DotNet.Tests/packages.config

Lines changed: 0 additions & 16 deletions
This file was deleted.

experiments/Azure.Experiments/Shared.Tests/Shared.Tests.projitems

Lines changed: 0 additions & 19 deletions
This file was deleted.

experiments/Azure.Experiments/Shared.Tests/Shared.Tests.shproj

Lines changed: 0 additions & 13 deletions
This file was deleted.

experiments/Azure.Experiments/Shared/Azure.Experiments.Shared.projitems

Lines changed: 0 additions & 11 deletions
This file was deleted.

experiments/Azure.Experiments/Shared/Shared.shproj

Lines changed: 0 additions & 13 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp1.1;net4.5.2</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.0;net452</TargetFrameworks>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

99
<ItemGroup>
1010
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
11-
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
1211
<PackageReference Include="xunit" Version="2.3.0" />
1312
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0" />
1413
</ItemGroup>
@@ -17,6 +16,4 @@
1716
<ProjectReference Include="..\Azure.Experiments\Azure.Experiments.csproj" />
1817
</ItemGroup>
1918

20-
<Import Project="..\Shared.Tests\Shared.Tests.projitems" Label="Shared" />
21-
2219
</Project>

0 commit comments

Comments
 (0)