Skip to content

Moved CreateAliasMapping to correct target #7377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 25, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,6 @@
<!-- Investigate why the ChangeLogCheck target removes the 8080th character -->
<!-- <CallTarget targets="ChangeLogCheck" ContinueOnError="false" /> -->

<Exec Command="$(PowerShellCommandPrefix) &quot;$ProgressPreference = 'SilentlyContinue';. $(LibraryToolsFolder)\CreateAliasMapping.ps1 &quot;"/>

<MakeDir Directories="$(PackageDirectory)"
Condition="'$(Scope)' != 'Stack'" />
<MakeDir Directories="$(StackPackageFolder)"
Expand Down Expand Up @@ -357,6 +355,8 @@
<Target Name="BuildNetCore">
<Message Importance="high" Text="Building Cmdlets..." />

<Exec Command="$(PowerShellCoreCommandPrefix) &quot;$ProgressPreference = 'SilentlyContinue';. $(LibraryToolsFolder)\CreateAliasMapping.ps1 &quot;"/>

<!-- Build and create package content -->
<Exec Command="dotnet --version"/>
<Exec Command="dotnet publish Azure.PowerShell.Netcore.sln -c $(Configuration)"/>
Expand Down