TIL

Today I Learned


Project maintained by gushwell Hosted on GitHub Pages — Theme by mattgraham

Visual Studioでの発行で特定のファイルを除外する

Properties\PublishProfilesにあるpubxmlに以下の記述を追加する。

これで、MyFolderファイルの、.txtと.tmpは発行から除外される。

<PropertyGroup>
    ...
    <ExcludeFilesFromDeployment>
      MyFolder\*.txt;
      MyFolder\*.tmp
    </ExcludeFilesFromDeployment>
  </PropertyGroup>