1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Visual Studio InstallerのSetup Projectでunder source code control and is not checked outと言われた時の対処

Posted at

概要

過去から引きずってきたVisual Studio Installerを使っているプロジェクトに改修をいれ、いざInstallerを作成しようとVersionをアップデートすると、

The command you are attempting cannot be completed because the file '***.vdproj' is under source code control and is not checked out.

などと言われてVersionが変化しない時の解決法

前提

  • 過去にTFSでバージョン管理していた
  • 現在はgitで管理
  • 元はVS2010、現在VS2017

解決した方法

vdprojを開き、

"SccProjectName" = "8:SAK"
"SccLocalPath" = "8:SAK"
"SccAuxPath" = "8:SAK"
"SccProvider" = "8:SAK"

となっている箇所を、

"SccProjectName" = "8:"
"SccLocalPath" = "8:"
"SccAuxPath" = "8:"
"SccProvider" = "8:"

とした(SAKを消した)。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?