Skip to content

Commit 42bd3ed

Browse files
authored
Not actually a code issue, there was a 2nd csharpierignore in a csharpier directory that was only needed for a docker file. (#1501)
closes #1500
1 parent 551d3b5 commit 42bd3ed

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"csharpier": {
6-
"version": "1.0.0-alpha32",
6+
"version": "1.0.0-alpha45",
77
"commands": [
88
"csharpier"
99
]

.csharpierignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
build
22

3-
Uploads/
4-
53
Tests/MsBuild/TestCases/
64

75
Src/CSharpier.Benchmarks/CodeSamples/

Src/CSharpier.Cli/IgnoreFile.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,11 @@ public void Add(string rule)
174174
{
175175
this.Rules.Add(new IgnoreRule(rule));
176176
}
177+
178+
public override string ToString()
179+
{
180+
return "BasePath = " + basePath;
181+
}
177182
}
178183
}
179184

Tests/MsBuild/Run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ foreach ($scenario in $scenarios) {
3636
WORKDIR /app
3737
COPY ./nupkg ./nupkg
3838
COPY ./nuget.config ./nuget.config
39-
COPY ./.csharpierignore ./.csharpierignore
39+
COPY ./not_csharpierignore ./.csharpierignore
4040
COPY ./GeneratedScenarios/$($scenario.name)/Project.csproj ./
4141
RUN dotnet build -c Release
4242
"

0 commit comments

Comments
 (0)