Skip to content

Commit

Permalink
Fix dotnet cli build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgamerz committed Nov 3, 2020
1 parent 615fcd1 commit 86660a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ALOTInstallerCore/ALOTInstallerCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@
<ProjectReference Include="..\ME3ExplorerLib\ME3ExplorerCore\ME3ExplorerCore.csproj" />
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="if not exist &quot;$(SolutionDir)ALOTInstallerCore\BundledManifest\&quot; mkdir &quot;$(SolutionDir)ALOTInstallerCore\BundledManifest&quot;&#xD;&#xA;if $(ConfigurationName) == WPFRelease (powershell Compress-Archive -Path '$(SolutionDir)manifest.xml' -DestinationPath '$(SolutionDir)ALOTInstallerCore\BundledManifest\bundledmanifest.zip' -Force)&#xD;&#xA;if $(ConfigurationName) == WinRelease (powershell Compress-Archive -Path '$(SolutionDir)manifest.xml' -DestinationPath '$(SolutionDir)ALOTInstallerCore\BundledManifest\bundledmanifest.zip' -Force)&#xD;&#xA;if $(ConfigurationName) == LinuxRelease (powershell Compress-Archive -Path '$(SolutionDir)manifest.xml' -DestinationPath '$(SolutionDir)ALOTInstallerCore\BundledManifest\bundledmanifest.zip' -Force)&#xD;&#xA;if $(ConfigurationName) == MacRelease (powershell Compress-Archive -Path '$(SolutionDir)manifest.xml' -DestinationPath '$(SolutionDir)ALOTInstallerCore\BundledManifest\bundledmanifest.zip' -Force)" />
<Exec Command="if not exist &quot;$(ProjectDir)BundledManifest\&quot; mkdir &quot;$(ProjectDir)BundledManifest&quot;&#xD;&#xA;if $(ConfigurationName) == WPFRelease (powershell Compress-Archive -Path '$(ProjectDir)..\manifest.xml' -DestinationPath '$(ProjectDir)BundledManifest\bundledmanifest.zip' -Force)&#xD;&#xA;if $(ConfigurationName) == WinRelease (powershell Compress-Archive -Path '$(ProjectDir)..\manifest.xml' -DestinationPath '$(ProjectDir)BundledManifest\bundledmanifest.zip' -Force)&#xD;&#xA;if $(ConfigurationName) == LinuxRelease (powershell Compress-Archive -Path '$(ProjectDir)..\manifest.xml' -DestinationPath '$(ProjectDir)BundledManifest\bundledmanifest.zip' -Force)&#xD;&#xA;if $(ConfigurationName) == MacRelease (powershell Compress-Archive -Path '$(ProjectDir)..\manifest.xml' -DestinationPath '$(ProjectDir)BundledManifest\bundledmanifest.zip' -Force)" />
</Target>
</Project>

0 comments on commit 86660a1

Please sign in to comment.