Skip to content

Commit f039f3f

Browse files
committed
fix: replace backslashes with forward slashes in csproj files
1 parent e74ab7f commit f039f3f

15 files changed

Lines changed: 36 additions & 36 deletions

File tree

src/Ivy.Agent.Filter/Ivy.Agent.Filter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
</ItemGroup>
5555

5656
<ItemGroup>
57-
<None Include="README.md" Pack="true" PackagePath="\" />
57+
<None Include="README.md" Pack="true" PackagePath="/" />
5858
</ItemGroup>
5959

6060
</Project>

src/Ivy.Analyser/Ivy.Analyser.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
</ItemGroup>
3838

3939
<ItemGroup>
40-
<None Update="tools\*.ps1" CopyToOutputDirectory="Always" Pack="true" PackagePath="" />
41-
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
40+
<None Update="tools/*.ps1" CopyToOutputDirectory="Always" Pack="true" PackagePath="" />
41+
<None Include="$(OutputPath)/$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
4242
</ItemGroup>
4343

4444
<ItemGroup>

src/Ivy.Benchmarks.E2E/Ivy.Benchmarks.E2E.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Nullable>enable</Nullable>
88
<IsPackable>false</IsPackable>
99
<RootNamespace>Ivy.Benchmarks.E2E</RootNamespace>
10-
<DefaultItemExcludes>$(DefaultItemExcludes);Host.Native\**;Host.Legacy\**</DefaultItemExcludes>
10+
<DefaultItemExcludes>$(DefaultItemExcludes);Host.Native/**;Host.Legacy/**</DefaultItemExcludes>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

src/Ivy.Desktop/Ivy.Desktop.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<Import Project="build/Ivy.Desktop.targets" />
4747

4848
<ItemGroup>
49-
<None Include="README.md" Pack="true" PackagePath="\" />
49+
<None Include="README.md" Pack="true" PackagePath="/" />
5050
</ItemGroup>
5151

5252
</Project>

src/Ivy.Plugin.Abstractions/Ivy.Plugin.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
</ItemGroup>
4343

4444
<ItemGroup>
45-
<None Include="README.md" Pack="true" PackagePath="\" />
45+
<None Include="README.md" Pack="true" PackagePath="/" />
4646
</ItemGroup>
4747
</Project>

src/auth/Ivy.Auth.Clerk/Ivy.Auth.Clerk.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Import Project="../../../../Ivy/Directory.Build.props" Condition="Exists('../../../../Ivy/Directory.Build.props')" />
44

@@ -31,7 +31,7 @@
3131
</PropertyGroup>
3232

3333
<ItemGroup>
34-
<None Include="README.md" Pack="true" PackagePath="\" />
34+
<None Include="README.md" Pack="true" PackagePath="/" />
3535
</ItemGroup>
3636

3737
</Project>

src/auth/Ivy.Auth.GitHub/Ivy.Auth.GitHub.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</PropertyGroup>
3333

3434
<ItemGroup>
35-
<None Include="README.md" Pack="true" PackagePath="\" />
35+
<None Include="README.md" Pack="true" PackagePath="/" />
3636
</ItemGroup>
3737

3838
</Project>

src/widgets/Ivy.Widgets.ActivityHeatmap/Ivy.Widgets.ActivityHeatmap.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@
4040
</ItemGroup>
4141

4242
<ItemGroup>
43-
<Compile Remove=".samples\**\*.cs" />
44-
<Compile Remove="frontend\node_modules\**" />
45-
<Compile Remove="Tests\**\*.cs" />
46-
<None Include=".samples\**\*" CopyToOutputDirectory="Never" />
43+
<Compile Remove=".samples/**/*.cs" />
44+
<Compile Remove="frontend/node_modules/**" />
45+
<Compile Remove="Tests/**/*.cs" />
46+
<None Include=".samples/**/*" CopyToOutputDirectory="Never" />
4747
</ItemGroup>
4848

49-
<Import Project="..\..\Ivy\Build\Ivy.ExternalWidget.targets" />
49+
<Import Project="../../Ivy/Build/Ivy.ExternalWidget.targets" />
5050

5151
</Project>

src/widgets/Ivy.Widgets.AnimatedStatusLabel/Ivy.Widgets.AnimatedStatusLabel.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
</ItemGroup>
4141

4242
<ItemGroup>
43-
<Compile Remove=".samples\**\*.cs" />
44-
<None Include=".samples\**\*" CopyToOutputDirectory="Never" />
43+
<Compile Remove=".samples/**/*.cs" />
44+
<None Include=".samples/**/*" CopyToOutputDirectory="Never" />
4545
</ItemGroup>
4646

47-
<Import Project="..\..\Ivy\Build\Ivy.ExternalWidget.targets" />
47+
<Import Project="../../Ivy/Build/Ivy.ExternalWidget.targets" />
4848

4949
</Project>

src/widgets/Ivy.Widgets.DiffView/Ivy.Widgets.DiffView.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
</ItemGroup>
4141

4242
<ItemGroup>
43-
<Compile Remove=".samples\**\*.cs" />
44-
<None Include=".samples\**\*" CopyToOutputDirectory="Never" />
43+
<Compile Remove=".samples/**/*.cs" />
44+
<None Include=".samples/**/*" CopyToOutputDirectory="Never" />
4545
</ItemGroup>
4646

47-
<Import Project="..\..\Ivy\Build\Ivy.ExternalWidget.targets" />
47+
<Import Project="../../Ivy/Build/Ivy.ExternalWidget.targets" />
4848

4949
</Project>

0 commit comments

Comments
 (0)