You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 28, 2020. It is now read-only.
echo Checking whether %keyfile% needs to be created...
echo.
ifnotexist%keyfile%goto notfound
echo%keyfile% already exists.
goto end
:notfound
echo%keyfile% does not exist, generating...
echo.
sn.exe -k %keyfile%
echo.
if%ERRORLEVEL%==9009goto nosn
ifnot%ERRORLEVEL%==0goto snerror
echo Note that this newly generated key file will not match the original key used by rubicon to sign re-motion assemblies.
goto end
:nosn
echo 'sn.exe', which is a part of the .NET/Windows SDK, could not be found in the PATH. Please set the PATH to include the .NET/Windows SDK or run this script from a Visual Studio command prompt.