Skip to content

Commit

Permalink
Merge pull request #12 from Geta/fix-build-targets
Browse files Browse the repository at this point in the history
Fixed issue with build targets
  • Loading branch information
MattisOlsson authored Nov 10, 2023
2 parents 98f12a6 + cd70b23 commit 8e95083
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [2.2.1]
## [2.2.0]

- Moved UI files to separate project/package

Expand Down
2 changes: 1 addition & 1 deletion pack.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$outputDir = ".\.package\"
$version = "2.1.0"
$version = "2.2.0"

dotnet build --configuration Release /p:Version=$version
dotnet pack --configuration Release --output $outputDir /p:Version=$version --no-build
4 changes: 2 additions & 2 deletions src/pack.proj
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
</Content>
<Content Include="$(SolutionDir)\src\$(MSBuildProjectName)\msbuild\CopyZipFiles.targets" >
<Pack>true</Pack>
<PackagePath>build\net5.0\$(ModuleName).targets</PackagePath>
<PackagePath>build\net5.0\$(MSBuildProjectName).targets</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
<BuildAction>None</BuildAction>
</Content>
<Content Include="$(SolutionDir)\src\$(MSBuildProjectName)\msbuild\CopyZipFiles.targets" >
<Pack>true</Pack>
<PackagePath>build\net6.0\$(ModuleName).targets</PackagePath>
<PackagePath>build\net6.0\$(MSBuildProjectName).targets</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
<BuildAction>None</BuildAction>
</Content>
Expand Down

0 comments on commit 8e95083

Please sign in to comment.