Skip to content

Commit ac7cace

Browse files
committed
Combine solutions for update-dependencies and test projects (dotnet#6316)
1 parent 2977e49 commit ac7cace

File tree

4 files changed

+57
-47
lines changed

4 files changed

+57
-47
lines changed

.devcontainer/devcontainer.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"GitHub.copilot"
1616
],
1717
"settings": {
18+
"dotnet.defaultSolution": "Microsoft.DotNet.Docker.sln",
1819
"remote.autoForwardPorts": true,
1920
"remote.autoForwardPortsSource": "hybrid",
2021
"remote.otherPortsAttributes": {

Microsoft.DotNet.Docker.sln

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{0AB3BF05-4346-4AA6-1389-037BE0695223}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.DotNet.Docker.Tests", "tests\Microsoft.DotNet.Docker.Tests\Microsoft.DotNet.Docker.Tests.csproj", "{70F07079-3009-4DE0-833A-995D71907FEC}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "eng", "eng", "{7525B257-249C-EE79-B10A-65D0BC27ABA9}"
11+
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "update-dependencies", "eng\update-dependencies\update-dependencies.csproj", "{211B4694-06D9-43B3-AC62-9461744E1E85}"
13+
EndProject
14+
Global
15+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
16+
Debug|Any CPU = Debug|Any CPU
17+
Debug|x64 = Debug|x64
18+
Debug|x86 = Debug|x86
19+
Release|Any CPU = Release|Any CPU
20+
Release|x64 = Release|x64
21+
Release|x86 = Release|x86
22+
EndGlobalSection
23+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
24+
{70F07079-3009-4DE0-833A-995D71907FEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{70F07079-3009-4DE0-833A-995D71907FEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{70F07079-3009-4DE0-833A-995D71907FEC}.Debug|x64.ActiveCfg = Debug|Any CPU
27+
{70F07079-3009-4DE0-833A-995D71907FEC}.Debug|x64.Build.0 = Debug|Any CPU
28+
{70F07079-3009-4DE0-833A-995D71907FEC}.Debug|x86.ActiveCfg = Debug|Any CPU
29+
{70F07079-3009-4DE0-833A-995D71907FEC}.Debug|x86.Build.0 = Debug|Any CPU
30+
{70F07079-3009-4DE0-833A-995D71907FEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
31+
{70F07079-3009-4DE0-833A-995D71907FEC}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{70F07079-3009-4DE0-833A-995D71907FEC}.Release|x64.ActiveCfg = Release|Any CPU
33+
{70F07079-3009-4DE0-833A-995D71907FEC}.Release|x64.Build.0 = Release|Any CPU
34+
{70F07079-3009-4DE0-833A-995D71907FEC}.Release|x86.ActiveCfg = Release|Any CPU
35+
{70F07079-3009-4DE0-833A-995D71907FEC}.Release|x86.Build.0 = Release|Any CPU
36+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Debug|Any CPU.Build.0 = Debug|Any CPU
38+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Debug|x64.ActiveCfg = Debug|Any CPU
39+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Debug|x64.Build.0 = Debug|Any CPU
40+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Debug|x86.ActiveCfg = Debug|Any CPU
41+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Debug|x86.Build.0 = Debug|Any CPU
42+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Release|Any CPU.ActiveCfg = Release|Any CPU
43+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Release|Any CPU.Build.0 = Release|Any CPU
44+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Release|x64.ActiveCfg = Release|Any CPU
45+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Release|x64.Build.0 = Release|Any CPU
46+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Release|x86.ActiveCfg = Release|Any CPU
47+
{211B4694-06D9-43B3-AC62-9461744E1E85}.Release|x86.Build.0 = Release|Any CPU
48+
EndGlobalSection
49+
GlobalSection(SolutionProperties) = preSolution
50+
HideSolutionNode = FALSE
51+
EndGlobalSection
52+
GlobalSection(NestedProjects) = preSolution
53+
{70F07079-3009-4DE0-833A-995D71907FEC} = {0AB3BF05-4346-4AA6-1389-037BE0695223}
54+
{211B4694-06D9-43B3-AC62-9461744E1E85} = {7525B257-249C-EE79-B10A-65D0BC27ABA9}
55+
EndGlobalSection
56+
EndGlobal

eng/update-dependencies/update-dependencies.sln

-22
This file was deleted.

tests/Microsoft.DotNet.Docker.Tests/Microsoft.DotNet.Docker.Tests.sln

-25
This file was deleted.

0 commit comments

Comments
 (0)