This repository was archived by the owner on Oct 28, 2022. It is now read-only.
File tree 2 files changed +20
-23
lines changed
2 files changed +20
-23
lines changed Original file line number Diff line number Diff line change @@ -107,3 +107,7 @@ _UpgradeReport_Files/
107
107
Backup * /
108
108
UpgradeLog * .XML
109
109
/* .nupkg
110
+
111
+ /out40
112
+
113
+ /out45
Original file line number Diff line number Diff line change 1
1
echo Initializing
2
- rmdir /s /q out
2
+ rmdir /s /q out45
3
+ rmdir /s /q out40
3
4
.nuget\nuget install .\ReactiveSockets\packages.config -OutputDirectory packages
4
5
5
6
echo Building stable version
6
7
7
- md .\out
8
- md .\out \lib
9
- md .\out \lib\net45
8
+ md .\out45
9
+ md .\out45 \lib
10
+ md .\out45 \lib\net45
10
11
msbuild .\ReactiveSockets\ReactiveSockets.csproj /p:Configuration=Release /p:TargetFrameworkVersion=v4.5 /t:Rebuild
11
- xcopy .\ReactiveSockets\bin\Release\ReactiveSockets.dll .\out\lib\net45\* /Y
12
- xcopy .\ReactiveSockets\bin\Release\ReactiveSockets.xml .\out\lib\net45\* /Y
13
- xcopy .\ReactiveSockets.nuspec out\* /Y
14
- .nuget\nuget pack .\out\ReactiveSockets.nuspec
15
-
16
- timeout 1
17
- rmdir /s /q out
18
- timeout 1
19
-
12
+ xcopy .\ReactiveSockets\bin\Release\ReactiveSockets.dll .\out45\lib\net45\* /Y
13
+ xcopy .\ReactiveSockets\bin\Release\ReactiveSockets.xml .\out45\lib\net45\* /Y
14
+ xcopy .\ReactiveSockets.nuspec .\out45\* /Y
15
+ .nuget\nuget pack .\out45\ReactiveSockets.nuspec
20
16
21
17
echo Building prerelease version
22
18
23
- md .\out
24
- md .\out \lib
25
- md .\out \lib\net40
19
+ md .\out40
20
+ md .\out40 \lib
21
+ md .\out40 \lib\net40
26
22
msbuild .\ReactiveSockets\ReactiveSockets.csproj /p:Configuration=Release /p:TargetFrameworkVersion=v4.0 /t:Rebuild
27
- xcopy .\ReactiveSockets\bin\Release\ReactiveSockets.dll .\out\lib\net40\* /Y
28
- xcopy .\ReactiveSockets\bin\Release\ReactiveSockets.xml .\out\lib\net40\* /Y
29
- xcopy .\ReactiveSockets-rc.nuspec .\out\* /Y
30
- .nuget\nuget pack .\out\ReactiveSockets-rc.nuspec
31
-
32
- timeout 1
33
- rmdir /s /q out
23
+ xcopy .\ReactiveSockets\bin\Release\ReactiveSockets.dll .\out40\lib\net40\* /Y
24
+ xcopy .\ReactiveSockets\bin\Release\ReactiveSockets.xml .\out40\lib\net40\* /Y
25
+ xcopy .\ReactiveSockets-rc.nuspec .\out40\* /Y
26
+ .nuget\nuget pack .\out40\ReactiveSockets-rc.nuspec
You can’t perform that action at this time.
0 commit comments