Skip to content

Commit

Permalink
Assembly and publish profile cleanup - drop 32bit build
Browse files Browse the repository at this point in the history
  • Loading branch information
0x90d committed Feb 19, 2019
1 parent 83bb156 commit dad25aa
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 68 deletions.
8 changes: 4 additions & 4 deletions Build.bat
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
CD /D VideoDuplicateFinder.Console
dotnet publish -c Release -v q --self-contained -r win-x64 -f netcoreapp3.0 -o "..\Releases\VDF.Windows-x64"
dotnet publish -c Release -v q --self-contained -r win-x86 -f netcoreapp3.0 -o "..\Releases\VDF.Windows-x86"
REM dotnet publish -c Release -v q --self-contained -r win-x86 -f netcoreapp3.0 -o "..\Releases\VDF.Windows-x86"
dotnet publish -c Release -v q --self-contained -r linux-x64 -f netcoreapp3.0 -o "..\Releases\VDF.Linux-x64"
CD /D ..
CD /D VideoDuplicateFinder.Windows
dotnet publish -c Release -v q --self-contained -r win-x64 -f netcoreapp3.0 -o "..\Releases\VDF.Windows-x64"
dotnet publish -c Release -v q --self-contained -r win-x86 -f netcoreapp3.0 -o "..\Releases\VDF.Windows-x86"
REM dotnet publish -c Release -v q --self-contained -r win-x86 -f netcoreapp3.0 -o "..\Releases\VDF.Windows-x86"
CD /D ..
CD /D VideoDuplicateFinderLinux
dotnet publish -c Release -v q --self-contained -r linux-x64 -f netcoreapp3.0 -o "..\Releases\VDF.Linux-x64"
Expand All @@ -14,8 +14,8 @@ CD /D ..
@echo off
REM Copy ffmpeg windows binaries
if not exist ".\Releases\ffmpeg\" goto end
if not exist ".\Releases\VDF.Windows-x86\bin" mkdir ".\Releases\VDF.Windows-x86\bin"
xcopy /q /y ".\Releases\ffmpeg\x86\*.*" ".\Releases\VDF.Windows-x86\bin"
REM if not exist ".\Releases\VDF.Windows-x86\bin" mkdir ".\Releases\VDF.Windows-x86\bin"
REM xcopy /q /y ".\Releases\ffmpeg\x86\*.*" ".\Releases\VDF.Windows-x86\bin"
if not exist "Releases\VDF.Windows-x64\bin" mkdir ".\Releases\VDF.Windows-x64\bin"
xcopy /q /y ".\Releases\ffmpeg\x64\*.*" ".\Releases\VDF.Windows-x64\bin"

Expand Down
16 changes: 0 additions & 16 deletions VideoDuplicateFinder.Console/Properties/PublishProfiles/x86.pubxml

This file was deleted.

16 changes: 0 additions & 16 deletions VideoDuplicateFinder.Windows/Properties/PublishProfiles/x86.pubxml

This file was deleted.

18 changes: 0 additions & 18 deletions VideoDuplicateFinder.Windows/VideoDuplicateFinder.Windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,6 @@
</COMReference>
</ItemGroup>-->

<ItemGroup>
<Reference Include="PresentationCore">
<HintPath>PresentationCore</HintPath>
</Reference>
<Reference Include="PresentationFramework">
<HintPath>PresentationFramework</HintPath>
</Reference>
<Reference Include="System">
<HintPath>System</HintPath>
</Reference>
<Reference Include="System.Xaml">
<HintPath>System.Xaml</HintPath>
</Reference>
<Reference Include="WindowsBase">
<HintPath>WindowsBase</HintPath>
</Reference>
</ItemGroup>

<ItemGroup>
<Page Update="MVVM\StringInputBox.xaml">
<Generator>MSBuild:Compile</Generator>
Expand Down
14 changes: 0 additions & 14 deletions VideoDuplicateFinderLinux/VideoDuplicateFinderLinux.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,6 @@
<ItemGroup>
<ProjectReference Include="..\DuplicateFinderEngine\DuplicateFinderEngine.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System">
<HintPath>System</HintPath>
</Reference>
<Reference Include="System.Data">
<HintPath>System.Data</HintPath>
</Reference>
<Reference Include="System.Drawing">
<HintPath>System.Drawing</HintPath>
</Reference>
<Reference Include="System.Xml">
<HintPath>System.Xml</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="MessageBoxView.xaml.cs">
<DependentUpon>MessageBoxView.xaml</DependentUpon>
Expand Down

0 comments on commit dad25aa

Please sign in to comment.