Skip to content

Commit 45d5a66

Browse files
committed
Wrap net35 app in a solution
To see if this is a simple repro of #1213.
1 parent 624787e commit 45d5a66

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

tests/Microsoft.DotNet.Framework.Docker.Tests/projects/dotnetapp-3.5/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG BASE_RUNTIME_IMAGE
55
FROM $BASE_BUILD_IMAGE as builder
66
WORKDIR /app
77
COPY . ./
8-
RUN ["msbuild.exe", "dotnetapp-3.5.csproj", "/p:Configuration=Release"]
8+
RUN ["msbuild.exe", "dotnetapp-3.5.sln", "/p:Configuration=Release"]
99

1010

1111
FROM $BASE_RUNTIME_IMAGE
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dotnetapp-3.5", "dotnetapp-3.5.csproj", "{E00527DF-512D-47B6-B341-C090F0D01DA7}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|Any CPU = Release|Any CPU
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Debug|x64.ActiveCfg = Debug|Any CPU
21+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Debug|x64.Build.0 = Debug|Any CPU
22+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Debug|x86.ActiveCfg = Debug|Any CPU
23+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Debug|x86.Build.0 = Debug|Any CPU
24+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Release|x64.ActiveCfg = Release|Any CPU
27+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Release|x64.Build.0 = Release|Any CPU
28+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Release|x86.ActiveCfg = Release|Any CPU
29+
{E00527DF-512D-47B6-B341-C090F0D01DA7}.Release|x86.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
EndGlobal

0 commit comments

Comments
 (0)