-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove websocketsharp download from workflow
- Loading branch information
1 parent
49caa70
commit 4298f7b
Showing
1 changed file
with
1 addition
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,29 +23,7 @@ jobs: | |
|
||
- name: Install MSBuild to PATH | ||
uses: microsoft/[email protected] | ||
|
||
- name: Download WebSocket-Sharp 1.0.3rc11 | ||
# Fine, I'll play dirty. | ||
uses: carlosperate/[email protected] | ||
with: | ||
file-url: 'https://www.nuget.org/api/v2/package/WebSocketSharp/1.0.3-rc11' | ||
file-name: websocketsharp.nupkg | ||
location: './tmp' | ||
|
||
- name: Extract WebSocket-Sharp with 7z | ||
run: | | ||
cd tmp | ||
7z x websocketsharp.nupkg | ||
copy .\lib\websocket-sharp.dll D:\a\collab-vm-csharp-client\collab-vm-csharp-client\ | ||
- name: Copy WebSocket-Sharp to build folders | ||
run: | | ||
cd D:\a\collab-vm-csharp-client\collab-vm-csharp-client\ | ||
mkdir ./bin/Debug | ||
mkdir ./bin/Release | ||
copy websocket-sharp.dll bin\Release | ||
copy websocket-sharp.dll bin\Debug | ||
|
||
- name: Use MSBuild to compile debug version | ||
run: msbuild | ||
|
||
|