aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp/keys/generate_new_key.bat
blob: 6af599a1e98f1be13da7ab2c5501b8270c40f70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@ECHO OFF
IF EXIST "C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\sn.exe" GOTO FOUND
goto USEPATH

:FOUND
"C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\sn.exe" -k %~dp0\Google.Protobuf.snk 
GOTO EXIT

:USEPATH
sn.exe -k %~dp0\Google.Protobuf.snk 
GOTO EXIT

:EXIT