36 lines
923 B
Batchfile
36 lines
923 B
Batchfile
@ECHO OFF
|
|
|
|
dotnet build ^
|
|
"Nuclex.Support/Nuclex.Support (netstandard-2.0).csproj" ^
|
|
--configuration Release
|
|
|
|
dotnet build ^
|
|
"Nuclex.Windows.Forms/Nuclex.Windows.Forms (net-4.6)(net-8.0).csproj" ^
|
|
--configuration Release ^
|
|
--no-dependencies
|
|
|
|
dotnet build ^
|
|
"Nuclex.Windows.Forms.Ninject/Nuclex.Windows.Forms.Ninject (net-4.6)(net-8.0).csproj" ^
|
|
--configuration Release ^
|
|
--no-dependencies
|
|
|
|
dotnet build ^
|
|
"Nuclex.Windows.Forms.DependencyInjection/Nuclex.Windows.Forms.DependencyInjection (net-4.6)(net-8.0).csproj" ^
|
|
--configuration Release ^
|
|
--no-dependencies
|
|
|
|
nuget pack ^
|
|
Nuclex.Foundation.nuspec ^
|
|
-Version 1.2.1 ^
|
|
-Properties Configuration=Release
|
|
|
|
nuget pack ^
|
|
Nuclex.Foundation.Ninject.nuspec ^
|
|
-Version 1.2.1 ^
|
|
-Properties Configuration=Release
|
|
|
|
nuget pack ^
|
|
Nuclex.Foundation.DependencyInjection.nuspec ^
|
|
-Version 1.2.1 ^
|
|
-Properties Configuration=Release
|