Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Commit a5a2ea8

Browse files
committed
Updating the framework packaging script to exclude temporary directories and include the release for netstandard1.4.
1 parent 4c0b3da commit a5a2ea8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Setup/Archiver/package-framework.cmd

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ mkdir ..\bin
3838
set output=..\bin\%fullname%
3939
del %output%
4040

41-
set ignore=-x*.tmp -x*\.vs -x*.suo -x*.user -x*.vsp -x*.pidb -x*SlimDX.pdb -x*.sdf -x*\obj -x*\.svn* -x*.lastcodeanalysissucceeded -x*.CodeAnalysisLog.xml -x*.VC.db -x*.VC.opendb -x*.tmp
41+
set ignore=-x*.tmp -x*\.vs -x*.suo -x*.user -x*.vsp -x*.pidb -x*SlimDX.pdb -x*.sdf -x*\obj -x*\.svn* -x*.lastcodeanalysissucceeded -x*.CodeAnalysisLog.xml -x*.VC.db -x*.VC.opendb -x*.tmp -x*.GhostDoc.xml -x*.ib_preset -x*.psess
4242

4343
%rar% %opts% %output% "..\..\Contributors.txt"
4444
%rar% %opts% %output% "..\..\Copyright.txt"
@@ -52,10 +52,11 @@ set ignore=-x*.tmp -x*\.vs -x*.suo -x*.user -x*.vsp -x*.pidb -x*SlimDX.pdb -x*.s
5252
%rar% %opts% -r %output% "..\..\Release\net45" %ignore%
5353
%rar% %opts% -r %output% "..\..\Release\net46" %ignore%
5454
%rar% %opts% -r %output% "..\..\Release\net462" %ignore%
55+
%rar% %opts% -r %output% "..\..\Release\netstandard1.4" %ignore%
5556
%rar% %opts% -r %output% "..\..\Release\netstandard2.0" %ignore%
56-
%rar% %opts% -r %output% "..\..\Sources\*" %ignore% -x*\TestResults -x*\Accord.Music -x*.shfbproj_*
57+
%rar% %opts% -r %output% "..\..\Sources\*" %ignore% -x*\bin\ -x*\obj -x*\packages -x*\TestResults -x*\Accord.Music -x*.shfbproj_* -x*_site -x*Release -x*Debug
5758
%rar% %opts% -r %output% "..\..\Unit Tests\*" %ignore% -x*\bin -x*\TestResults -x*\Accord.Music -x*.shfbproj_*
58-
%rar% %opts% -r %output% "..\..\Samples\*" %ignore% -x*\bin\x64\ -x*\bin\Debug -x*\bin\Release -x*\bin\x86\Debug -x"*\bin\x86\Release 3.5" -x*\packages
59+
%rar% %opts% -r %output% "..\..\Samples\*" %ignore% -x*\bin\ -x*\obj -x*\packages
5960
%rar% %opts% -r %output% "..\..\Externals\*" %ignore% -x*.pdb
6061
%rar% %opts% -r %output% "..\..\Setup\*" %ignore% -x*\bin
6162
%rar% t %output%

0 commit comments

Comments
 (0)