Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run tests during AppVeyor builds #51

Merged
merged 26 commits into from
Jun 10, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Build whole solution including test project
  • Loading branch information
jariq committed Jun 6, 2017
commit c0f10cbd2c5bd3ca3c56829518b48a142118ba1f
18 changes: 3 additions & 15 deletions build/build-net20.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,9 @@ call %tools%
@rem Delete output directory
rmdir /S /Q net20

@rem Clean project
msbuild ..\src\Pkcs11Interop\Pkcs11Interop\Pkcs11Interop.csproj ^
/p:Configuration=Release /p:Platform=AnyCPU /p:TargetFrameworkVersion=v2.0 ^
/target:Clean || goto :error
msbuild ..\src\Pkcs11Interop\Pkcs11Interop.StrongName\Pkcs11Interop.StrongName.csproj ^
/p:Configuration=Release /p:Platform=AnyCPU /p:TargetFrameworkVersion=v2.0 ^
/target:Clean || goto :error

@rem Build project
msbuild ..\src\Pkcs11Interop\Pkcs11Interop\Pkcs11Interop.csproj ^
/p:Configuration=Release /p:Platform=AnyCPU /p:TargetFrameworkVersion=v2.0 ^
/target:Build || goto :error
msbuild ..\src\Pkcs11Interop\Pkcs11Interop.StrongName\Pkcs11Interop.StrongName.csproj ^
/p:Configuration=Release /p:Platform=AnyCPU /p:TargetFrameworkVersion=v2.0 ^
/target:Build || goto :error
@rem Clean and build solution
msbuild ..\src\Pkcs11Interop\Pkcs11Interop.sln /p:Configuration=Release /p:Platform="Any CPU" /p:TargetFrameworkVersion=v2.0 /target:Clean || goto :error
msbuild ..\src\Pkcs11Interop\Pkcs11Interop.sln /p:Configuration=Release /p:Platform="Any CPU" /p:TargetFrameworkVersion=v2.0 /target:Build || goto :error

@rem Copy result to output directory
mkdir net20 || goto :error
Expand Down