Skip to content

Commit

Permalink
Move output folder to property
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 committed Sep 16, 2024
1 parent 62adcde commit 6006a3b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@
This target can be remove if we figure out how to just import the "pack" targets correctly.
-->
<Target Name="Pack">
<Exec Command="nuget pack ..\..\..\scripts\Microsoft.Xaml.Behaviors.Uwp.Managed.nuspec -outputDirectory ..\..\..\out\NuGetPackages -version $(PackageVersion)" />
<PropertyGroup>
<PackageOutputPath>..\..\..\out\NuGetPackages</PackageOutputPath>
</PropertyGroup>
<Exec Command="nuget pack ..\..\..\scripts\Microsoft.Xaml.Behaviors.Uwp.Managed.nuspec -outputDirectory $(PackageOutputPath) -version $(PackageVersion)" />
</Target>
</Project>

0 comments on commit 6006a3b

Please sign in to comment.