-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathbuild.bat
More file actions
13 lines (9 loc) · 934 Bytes
/
Copy pathbuild.bat
File metadata and controls
13 lines (9 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
CLS
'Just clean and build all projects here, even the examples just to simplify things
msbuild CmdMessenger.sln /t:clean /p:Configuration=Release
msbuild CmdMessenger.sln /t:Build /p:Configuration=Release
'Create nuget packages
nuget pack ./CommandMessenger/CommandMessenger.csproj -IncludeReferencedProjects -Prop Configuration=Release -Prop Platform=AnyCPU -Symbols
nuget pack ./Transport/CommandMessenger.Transport.Bluetooth/CommandMessenger.Transport.Bluetooth.csproj -IncludeReferencedProjects -Prop Configuration=Release -Prop Platform=AnyCPU -Symbols
nuget pack ./Transport/CommandMessenger.Transport.Network/CommandMessenger.Transport.Network.csproj -IncludeReferencedProjects -Prop Configuration=Release -Prop Platform=AnyCPU -Symbols
nuget pack ./Transport/CommandMessenger.Transport.Serial/CommandMessenger.Transport.Serial.csproj -IncludeReferencedProjects -Prop Configuration=Release -Prop Platform=AnyCPU -Symbols