Skip to content

Commit e83632c

Browse files
committed
Remove husky, it wasn't being used
1 parent a353b92 commit e83632c

File tree

4 files changed

+0
-13
lines changed

4 files changed

+0
-13
lines changed

.config/dotnet-tools.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@
77
"commands": [
88
"dotnet-csharpier"
99
]
10-
},
11-
"husky": {
12-
"version": "0.6.2",
13-
"commands": [
14-
"husky"
15-
]
1610
}
1711
}
1812
}

.github/workflows/publish_beta.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ jobs:
2222
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
2323
PROJECT_FILE_PATH: Src/CSharpier.Cli/CSharpier.Cli.csproj
2424
TAG_FORMAT: "*"
25-
RESTORE_TOOLS: 0

Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ WORKDIR /build
2121
COPY ./Directory.Build.props ./Directory.Packages.props ./
2222
COPY ./Src/CSharpier.Playground/CSharpier.Playground.csproj Src/CSharpier.Playground/
2323
COPY ./Src/CSharpier/CSharpier.csproj Src/CSharpier/
24-
ARG RESTORE_TOOLS=0
2524
RUN dotnet restore "Src/CSharpier.Playground/CSharpier.Playground.csproj"
2625

2726
COPY ./Src/CSharpier.Playground/ClientApp/package.json Src/CSharpier.Playground/ClientApp/
@@ -35,7 +34,6 @@ WORKDIR /build
3534
COPY . .
3635

3736
FROM build AS publish
38-
ARG RESTORE_TOOLS=0
3937
RUN dotnet publish "Src/CSharpier.Playground/CSharpier.Playground.csproj" -c Release -o /app/publish
4038

4139
FROM base AS final

Src/CSharpier/CSharpier.Core.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,4 @@
4444
<Link>logo.png</Link>
4545
</None>
4646
</ItemGroup>
47-
<Target Name="RestoreTools" BeforeTargets="Restore;CollectPackageReferences" Condition="'$(RESTORE_TOOLS)' != 0 and '$(IsCrossTargetingBuild)' == 'true'">
48-
<Exec Command="dotnet tool restore" StandardOutputImportance="Low" StandardErrorImportance="High" />
49-
<Exec Command="dotnet husky install" StandardOutputImportance="Low" StandardErrorImportance="High" WorkingDirectory="../../" />
50-
</Target>
5147
</Project>

0 commit comments

Comments
 (0)