Skip to content

Commit

Permalink
Fixed the output path for the AppXRelease configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
lstratman committed Sep 26, 2020
1 parent babefaa commit f752caf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EasyConnect.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<StartupObject>EasyConnect.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppXRelease|AnyCPU' ">
<OutputPath>bin\AppX\</OutputPath>
<OutputPath>bin\AppXRelease\</OutputPath>
<DefineConstants>TRACE;APPX</DefineConstants>
<Optimize>true</Optimize>
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -402,7 +402,7 @@ del "$(TargetDir)$(ProjectName).appx" 1&gt;:null 2&gt;&amp;1
copy "$(SolutionDir)AppXManifest.xml" "$(TargetDir)" 1&gt;:null 2&gt;&amp;1
xcopy "$(SolutionDir)AppX\Assets\*" "$(TargetDir)\Assets" /I /Q /Y 1&gt;:null 2&gt;&amp;1
cd "$(TargetDir)"
del resources*.pri
del resources*.pri 1&gt;:null 2&gt;&amp;1
"$(WindowsSDKBin)\makepri.exe" new /pr . /cf ..\..\priconfig.xml /in $(ProjectName)
"$(WindowsSDKBin)\makeappx.exe" pack /d . /p $(ProjectName).appx /l
Exit /b 0</PostBuildEvent>
Expand Down

0 comments on commit f752caf

Please sign in to comment.