mirror of https://github.com/dotnet/runtime
Just create the C# file with colon on name on Linux, keep the csproj always there (#82724)
This commit is contained in:
parent
59e75aa1b8
commit
b2106aeae6
|
@ -363,5 +363,4 @@ src/coreclr/System.Private.CoreLib/common
|
||||||
# Temporary artifacts from local libraries stress builds
|
# Temporary artifacts from local libraries stress builds
|
||||||
.dotnet-daily/
|
.dotnet-daily/
|
||||||
run-stress-*
|
run-stress-*
|
||||||
debugger-test-with-colon-in-source-name.csproj
|
|
||||||
test:.cs
|
test:.cs
|
||||||
|
|
|
@ -119,10 +119,6 @@
|
||||||
<Target Name="CreateProjectWithColonInSourceName"
|
<Target Name="CreateProjectWithColonInSourceName"
|
||||||
Condition="!$([MSBuild]::IsOSPlatform('windows'))">
|
Condition="!$([MSBuild]::IsOSPlatform('windows'))">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<CsprojContent>
|
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
</Project>
|
|
||||||
</CsprojContent>
|
|
||||||
<CsContent>
|
<CsContent>
|
||||||
namespace DebuggerTests
|
namespace DebuggerTests
|
||||||
{
|
{
|
||||||
|
@ -136,10 +132,6 @@
|
||||||
}
|
}
|
||||||
</CsContent>
|
</CsContent>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<WriteLinesToFile
|
|
||||||
File="../tests/debugger-test-with-colon-in-source-name/debugger-test-with-colon-in-source-name.csproj"
|
|
||||||
Lines="$(CsprojContent)"
|
|
||||||
Overwrite="true"/>
|
|
||||||
<WriteLinesToFile
|
<WriteLinesToFile
|
||||||
File="../tests/debugger-test-with-colon-in-source-name/test:.cs"
|
File="../tests/debugger-test-with-colon-in-source-name/test:.cs"
|
||||||
Lines="$(CsContent)"
|
Lines="$(CsContent)"
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk"></Project>
|
Loading…
Reference in New Issue