XAMLで書けるインストーラを作るプロジェクト
リビジョン | e79c52bec977941ed3c245a8297e3bc53993b520 (tree) |
---|---|
日時 | 2011-05-31 22:48:35 |
作者 | azyobuzin <azyobuzin@user...> |
コミッター | azyobuzin |
ヘルプをMSBuildで一発でビルドできるように修正
@@ -4,8 +4,8 @@ | ||
4 | 4 | <!-- The configuration and platform will be used to determine which |
5 | 5 | assemblies to include from solution and project documentation |
6 | 6 | sources --> |
7 | - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
8 | - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
7 | + <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration> | |
8 | + <Platform Condition=" '$(Platform)' == '' ">x86</Platform> | |
9 | 9 | <SchemaVersion>2.0</SchemaVersion> |
10 | 10 | <ProjectGuid>{ed64bad5-7716-4a05-9ba6-17ea33938593}</ProjectGuid> |
11 | 11 | <SHFBSchemaVersion>1.9.3.0</SHFBSchemaVersion> |
@@ -3,7 +3,7 @@ | ||
3 | 3 | namespace Azyobuzi.XamlIn.Installer |
4 | 4 | { |
5 | 5 | /// <summary> |
6 | - /// <seealso cref="File"/>のコレクション | |
6 | + /// <see cref="File"/>のコレクション | |
7 | 7 | /// </summary> |
8 | 8 | public class FileCollection : Collection<File> |
9 | 9 | { |