Skip to content

Commit b1f21d0

Browse files
committed
use verbatim string literals for the paths
1 parent d50a04e commit b1f21d0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/Smdn.Reflection.ReverseGenerating.ListApi.Core/Smdn.Reflection.ReverseGenerating.ListApi.Core.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ SPDX-License-Identifier: MIT
4040
</ItemGroup>
4141

4242
<PropertyGroup>
43-
<TestAssemblyPaths>@(TestAssemblies, '&quot;,%0D%0A&quot;')</TestAssemblyPaths>
43+
<TestAssemblyPaths>@(TestAssemblies, '&quot;,%0D%0A@&quot;')</TestAssemblyPaths>
4444
</PropertyGroup>
4545

4646
<ItemGroup>
4747
<SourceLines Include="namespace $(RootNamespace)$([MSBuild]::Escape(';'))" />
4848
<SourceLines Include="public static class TestAssemblyInfo {" />
4949
<SourceLines Include="public static readonly System.IO.DirectoryInfo RootDirectory = new(@&quot;$(TestAssemblyRootDirectory)&quot;)$([MSBuild]::Escape(';'))" />
50-
<SourceLines Include="public static readonly string[] TestAssemblyPaths = new[] {%0D%0A&quot;$(TestAssemblyPaths)&quot;%0D%0A}$([MSBuild]::Escape(';'))" />
50+
<SourceLines Include="public static readonly string[] TestAssemblyPaths = new[] {%0D%0A@&quot;$(TestAssemblyPaths)&quot;%0D%0A}$([MSBuild]::Escape(';'))" />
5151
<SourceLines Include="}" />
5252
</ItemGroup>
5353
<PropertyGroup>

tests/Smdn.Reflection.ReverseGenerating.ListApi/Smdn.Reflection.ReverseGenerating.ListApi.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ SPDX-License-Identifier: MIT
5050
</ItemGroup>
5151

5252
<PropertyGroup>
53-
<TestAssemblyPaths>@(TestAssemblies, '&quot;,%0D%0A&quot;')</TestAssemblyPaths>
53+
<TestAssemblyPaths>@(TestAssemblies, '&quot;,%0D%0A@&quot;')</TestAssemblyPaths>
5454
</PropertyGroup>
5555

5656
<ItemGroup>
5757
<SourceLines Include="namespace $(RootNamespace)$([MSBuild]::Escape(';'))" />
5858
<SourceLines Include="public static class TestAssemblyInfo {" />
5959
<SourceLines Include="public static readonly System.IO.DirectoryInfo RootDirectory = new(@&quot;$(TestAssemblyRootDirectory)&quot;)$([MSBuild]::Escape(';'))" />
60-
<SourceLines Include="public static readonly string[] TestAssemblyPaths = new[] {%0D%0A&quot;$(TestAssemblyPaths)&quot;%0D%0A}$([MSBuild]::Escape(';'))" />
60+
<SourceLines Include="public static readonly string[] TestAssemblyPaths = new[] {%0D%0A@&quot;$(TestAssemblyPaths)&quot;%0D%0A}$([MSBuild]::Escape(';'))" />
6161
<SourceLines Include="}" />
6262
</ItemGroup>
6363
<PropertyGroup>

0 commit comments

Comments
 (0)