ソースコードとプロジェクトファイルを手書きしてHello Worldをやってみました。
Program.cs
using System; using System.Windows; class Program { [STAThread] static void Main() { Application app = new Application(); Window w = new Window(); w.Title = "Hello World"; app.Run(w); } }
HelloWorld.csproj
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration>Debug</Configuration> <Platform>AnyCPU</Platform> <RootNamespace>HelloWorld</RootNamespace> <AssemblyName>HelloWorld</AssemblyName> <OutputType>WinExe</OutputType> <OutputPath>.\bin\Debug\</OutputPath> </PropertyGroup> <ItemGroup> <Reference Include="System" /> <Reference Include="WindowsBase" /> <Reference Include="PresentationCore" /> <Reference Include="PresentationFramework" /> </ItemGroup> <ItemGroup> <Compile Include="Program.cs" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.WinFX.targets" /> </Project>
ビルドログ
Microsoft (R) Build Engine Version 4.0.30319.1 [Microsoft .NET Framework, Version 4.0.30319.1] Copyright (C) Microsoft Corporation 2007. All rights reserved. 2010/11/09 15:31:16 にビルドを開始しました。 ノード 1 上のプロジェクト "D:\@Sandbox\HelloWorld\HelloWorld.csproj" (既定のターゲット)。 PrepareForBuild: ディレクトリ ".\bin\Debug\" を作成しています。 md ".\bin\Debug\" ディレクトリ "obj\Debug\" を作成しています。 md "obj\Debug\" MainResourcesGeneration: 入力がないため、ターゲット "MainResourcesGeneration" を省略しています。 CoreCompile: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationCore.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.dll" /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase.dll" /debug+ /debug:pdbonly /out:obj\Debug\HelloWorld.exe /target:winexe Program.cs CopyFilesToOutputDirectory: "obj\Debug\HelloWorld.exe" から ".\bin\Debug\HelloWorld.exe" へファイルをコピーしています。 copy /y "obj\Debug\HelloWorld.exe" ".\bin\Debug\HelloWorld.exe" HelloWorld -> D:\@Sandbox\HelloWorld\bin\Debug\HelloWorld.exe "obj\Debug\HelloWorld.pdb" から ".\bin\Debug\HelloWorld.pdb" へファイルをコピーしています。 copy /y "obj\Debug\HelloWorld.pdb" ".\bin\Debug\HelloWorld.pdb" プロジェクト "D:\@Sandbox\HelloWorld\HelloWorld.csproj" (既定のターゲット) のビルドが完了しました。 ビルドに成功しました。 0 個の警告 0 エラー 経過時間 00:00:00.59