Skip to content

Commit 5b98ce7

Browse files
committed
New build script
1 parent 2ec8db1 commit 5b98ce7

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

QuickLook.Plugin.OfficeViewer.csproj

+10-5
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
<SignAssembly>false</SignAssembly>
1313
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1414
<FileAlignment>512</FileAlignment>
15-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
16-
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
17-
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
15+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
16+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
17+
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
1818
<ProjectGuid>{9DD27AB3-C99B-4103-8BC8-B220EC399635}</ProjectGuid>
1919
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
2020
<WarningLevel>4</WarningLevel>
@@ -34,7 +34,7 @@
3434
<DebugSymbols>false</DebugSymbols>
3535
<DebugType>Portable</DebugType>
3636
<Optimize>true</Optimize>
37-
<OutputPath>bin\Release\</OutputPath>
37+
<OutputPath>Build\Release\</OutputPath>
3838
</PropertyGroup>
3939

4040
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
@@ -50,7 +50,7 @@
5050
<DebugSymbols>false</DebugSymbols>
5151
<DebugType>Portable</DebugType>
5252
<Optimize>true</Optimize>
53-
<OutputPath>bin\Release\</OutputPath>
53+
<OutputPath>Build\Release\</OutputPath>
5454
</PropertyGroup>
5555

5656
<ItemGroup>
@@ -79,4 +79,9 @@
7979
<PackageReference Include="UnblockZoneIdentifier " Version="1.0.0" />
8080
</ItemGroup>
8181

82+
<Target Name="ReduceReleasePackaging" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
83+
<Delete Files="$(OutputPath)\QuickLook.Common.dll" Condition="Exists('$(OutputPath)\QuickLook.Common.dll')" />
84+
<Delete Files="$(OutputPath)\QuickLook.Common.pdb" Condition="Exists('$(OutputPath)\QuickLook.Common.pdb')" />
85+
</Target>
86+
8287
</Project>

Scripts/pack-zip.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Remove-Item ..\QuickLook.Plugin.OfficeViewer.qlplugin -ErrorAction SilentlyContinue
22

3-
$files = Get-ChildItem -Path ..\bin\Release\ -Exclude *.pdb,*.xml
3+
$files = Get-ChildItem -Path ..\Build\Release\ -Exclude *.pdb,*.xml
44
Compress-Archive $files ..\QuickLook.Plugin.OfficeViewer.zip
55
Move-Item ..\QuickLook.Plugin.OfficeViewer.zip ..\QuickLook.Plugin.OfficeViewer.qlplugin

0 commit comments

Comments
 (0)