서명

    [C#] ClickOnce 배포에 사용할 개인키 만들기 (만료 기간 길게 설정)

    [C#] ClickOnce 배포에 사용할 개인키 만들기 (만료 기간 길게 설정)

    1. Windows 10 SDK 설치 developer.microsoft.com Microsoft Developer developer.microsoft.com 2. C:\Program Files (x86)\Windows Kits\10\bin 내에 설치된 makecert.exe 파일 위치에서 Command 창 띄움 3. 하위 명령어 입력 (CN = 키이름 , 09/20/2018 시작일, 12/31/2040 만료일) makecert.exe -r -pe -n "CN=TEST_key" -b 09/20/2018 -e 12/31/2040 -sky exchange -ss my Succeeded 확인 후 다음 진행 4. Visual Studio에서 서명 ClickOnce Enable 후 저장소에서 선택하여, 개인 키 ..