Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Nov 27, 2023
1 parent 66779b8 commit f614c8b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -149,7 +149,7 @@ jobs:
run: nuget pack src/Deployment/nuget/ReportGenerator.nuspec -OutputDirectory src/target/packages -Version ${{ env.Version }}

- name: 'Chocolatey pack reportgenerator.portable'
run: .$env:USERPROFILE\.nuget\packages\chocolatey\1.4.0\tools\chocolateyInstall\choco.exe pack src/Deployment/chocolatey/reportgenerator.portable.nuspec --outputdirectory=src/target/packages --version=${{ env.Version }}
run: .$env:USERPROFILE\.nuget\packages\chocolatey\2.2.2\tools\chocolateyInstall\choco.exe pack src/Deployment/chocolatey/reportgenerator.portable.nuspec --outputdirectory=src/target/packages --version=${{ env.Version }}

- name: 'Publish Artifact: packages'
uses: actions/upload-artifact@v3
Expand Down
Expand Up @@ -2,7 +2,7 @@
"profiles": {
"ReportGenerator.Console.NetCore": {
"commandName": "Project",
"commandLineArgs": "-reports:C:\\Users\\danie\\Documents\\Projects\\ReportGenerator\\src\\Testprojects\\CSharp\\Reports\\OpenCover.xml -targetdir:C:\\Users\\danie\\Desktop\\coverage -reporttypes:Html;"
"commandLineArgs": "\"-reports:..\\..\\..\\..\\..\\Testprojects\\CSharp\\Reports\\OpenCover.xml\" \"-targetdir:C:\\Users\\Daniel Palme\\Desktop\\coverage\" -reporttypes:Html;"
}
}
}
8 changes: 4 additions & 4 deletions src/build.proj
Expand Up @@ -2,13 +2,13 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Deploy">
<ItemGroup>
<PackageReference Include="chocolatey">
<Version>1.4.0</Version>
<Version>2.2.2</Version>
</PackageReference>
<PackageReference Include="MSBuildTasks">
<Version>1.5.0.235</Version>
</PackageReference>
<PackageReference Include="NuGet.CommandLine">
<Version>6.5.0</Version>
<Version>6.8.0</Version>
</PackageReference>
</ItemGroup>

Expand All @@ -27,8 +27,8 @@

<!-- Tools -->
<PropertyGroup>
<NuGetCommandLine>$(UserProfile)\.nuget\packages\nuget.commandline\6.5.0\tools\NuGet.exe</NuGetCommandLine>
<ChocolateyCommandLine>$(UserProfile)\.nuget\packages\chocolatey\1.4.0\tools\chocolateyInstall\choco.exe</ChocolateyCommandLine>
<NuGetCommandLine>&quot;$(UserProfile)\.nuget\packages\nuget.commandline\6.8.0\tools\NuGet.exe&quot;</NuGetCommandLine>
<ChocolateyCommandLine>&quot;$(UserProfile)\.nuget\packages\chocolatey\1.4.0\tools\chocolateyInstall\choco.exe&quot;</ChocolateyCommandLine>
</PropertyGroup>

<Target Name="Clean">
Expand Down

0 comments on commit f614c8b

Please sign in to comment.