Skip to content

Commit

Permalink
Merge pull request #1085 from lukeskinner/master
Browse files Browse the repository at this point in the history
Updated the documentation for Visual Studio Build Packaging
  • Loading branch information
anaisbetts authored Jul 10, 2017
2 parents ffaf5f2 + f5fbd83 commit 9390715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/using/visual-studio-packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The first step is to define a build target in your `.csproj` file.
<Output TaskParameter="Assemblies" ItemName="myAssemblyInfo"/>
</GetAssemblyIdentity>
<Exec Command="nuget pack MyApp.nuspec -Version %(myAssemblyInfo.Version) -Properties Configuration=Release -OutputDirectory $(OutDir) -BasePath $(OutDir)" />
<Exec Command="squirrel --releasify $(OutDir)MyApp.%(myAssemblyInfo.Version).nupkg" />
<Exec Command="squirrel --releasify $(OutDir)MyApp.$([System.Version]::Parse(%(myAssemblyInfo.Version)).ToString(3)).nupkg" />
</Target>
```

Expand Down

0 comments on commit 9390715

Please sign in to comment.