mirror of https://github.com/Sonarr/Sonarr
Fix filename in PostBuildEvent
NzbDrone.{Mono, Windows} has been renamed to Sonarr.{Mono, Windows} in adaf428aa7
This commit is contained in:
parent
fb4483fdcf
commit
7ae906863d
|
@ -126,12 +126,12 @@
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PostBuildEvent Condition="('$(OS)' == 'Windows_NT')">
|
<PostBuildEvent Condition="('$(OS)' == 'Windows_NT')">
|
||||||
xcopy /s /y "$(SolutionDir)\..\_output\NzbDrone.Mono.*" "$(TargetDir)"
|
xcopy /s /y "$(SolutionDir)\..\_output\Sonarr.Mono.*" "$(TargetDir)"
|
||||||
xcopy /s /y "$(SolutionDir)\..\_output\NzbDrone.Windows.*" "$(TargetDir)"
|
xcopy /s /y "$(SolutionDir)\..\_output\Sonarr.Windows.*" "$(TargetDir)"
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<PostBuildEvent Condition="('$(OS)' != 'Windows_NT')">
|
<PostBuildEvent Condition="('$(OS)' != 'Windows_NT')">
|
||||||
cp -rv $(SolutionDir)\..\_output\NzbDrone.Mono.* $(TargetDir) || true
|
cp -rv $(SolutionDir)\..\_output\Sonarr.Mono.* $(TargetDir) || true
|
||||||
cp -rv $(SolutionDir)\..\_output\NzbDrone.Windows.* $(TargetDir) || true
|
cp -rv $(SolutionDir)\..\_output\Sonarr.Windows.* $(TargetDir) || true
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
|
|
@ -181,12 +181,12 @@
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PostBuildEvent Condition="('$(OS)' == 'Windows_NT')">
|
<PostBuildEvent Condition="('$(OS)' == 'Windows_NT')">
|
||||||
xcopy /s /y "$(SolutionDir)\..\_output\NzbDrone.Mono.*" "$(TargetDir)"
|
xcopy /s /y "$(SolutionDir)\..\_output\Sonarr.Mono.*" "$(TargetDir)"
|
||||||
xcopy /s /y "$(SolutionDir)\..\_output\NzbDrone.Windows.*" "$(TargetDir)"
|
xcopy /s /y "$(SolutionDir)\..\_output\Sonarr.Windows.*" "$(TargetDir)"
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<PostBuildEvent Condition="('$(OS)' != 'Windows_NT')">
|
<PostBuildEvent Condition="('$(OS)' != 'Windows_NT')">
|
||||||
cp -rv $(SolutionDir)\..\_output\NzbDrone.Mono.* $(TargetDir)
|
cp -rv $(SolutionDir)\..\_output\Sonarr.Mono.* $(TargetDir)
|
||||||
cp -rv $(SolutionDir)\..\_output\NzbDrone.Windows.* $(TargetDir)
|
cp -rv $(SolutionDir)\..\_output\Sonarr.Windows.* $(TargetDir)
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
|
Loading…
Reference in New Issue