/src/Otis.Sample/Otis.Sample.csproj

http://otis-lib.googlecode.com/ · MSBuild · 100 lines · 93 code · 0 blank · 7 comment · 4 complexity · 38f1a4bf4bd35028a489c0d1374736fd MD5 · raw file

  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>8.0.50727</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{BAFA6C5F-0EF4-4329-954E-E333077425B7}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Otis.Sample</RootNamespace>
  11. <AssemblyName>Otis.Sample</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>..\..\build\bin\Debug\</OutputPath>
  18. <DefineConstants>DEBUG;TRACE</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23. <DebugType>pdbonly</DebugType>
  24. <Optimize>true</Optimize>
  25. <OutputPath>..\..\build\bin\Release\</OutputPath>
  26. <DefineConstants>TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Reference Include="System" />
  32. <Reference Include="System.Data" />
  33. <Reference Include="System.Deployment" />
  34. <Reference Include="System.Drawing" />
  35. <Reference Include="System.Windows.Forms" />
  36. <Reference Include="System.Xml" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Include="Domain\Artist.cs" />
  40. <Compile Include="Domain\Comment.cs" />
  41. <Compile Include="Domain\IMusicService.cs" />
  42. <Compile Include="Domain\MusicService.cs" />
  43. <Compile Include="Domain\NamedItem.cs" />
  44. <Compile Include="Domain\Rating.cs" />
  45. <Compile Include="Domain\Record.cs" />
  46. <Compile Include="Domain\Song.cs" />
  47. <Compile Include="Form1.cs">
  48. <SubType>Form</SubType>
  49. </Compile>
  50. <Compile Include="Form1.Designer.cs">
  51. <DependentUpon>Form1.cs</DependentUpon>
  52. </Compile>
  53. <Compile Include="Presentation\ArtistInfo.cs" />
  54. <Compile Include="Presentation\MusicCategory.cs" />
  55. <Compile Include="Presentation\RecordInfo.cs" />
  56. <Compile Include="Program.cs" />
  57. <Compile Include="Properties\AssemblyInfo.cs" />
  58. <EmbeddedResource Include="Form1.resx">
  59. <SubType>Designer</SubType>
  60. <DependentUpon>Form1.cs</DependentUpon>
  61. </EmbeddedResource>
  62. <EmbeddedResource Include="Properties\Resources.resx">
  63. <Generator>ResXFileCodeGenerator</Generator>
  64. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  65. <SubType>Designer</SubType>
  66. </EmbeddedResource>
  67. <Compile Include="Properties\Resources.Designer.cs">
  68. <AutoGen>True</AutoGen>
  69. <DependentUpon>Resources.resx</DependentUpon>
  70. </Compile>
  71. <None Include="Domain\DomainClasses.cd" />
  72. <None Include="Presentation\PresentationClasses.cd" />
  73. <None Include="Properties\Settings.settings">
  74. <Generator>SettingsSingleFileGenerator</Generator>
  75. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  76. </None>
  77. <Compile Include="Properties\Settings.Designer.cs">
  78. <AutoGen>True</AutoGen>
  79. <DependentUpon>Settings.settings</DependentUpon>
  80. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  81. </Compile>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <EmbeddedResource Include="Mappings\mappings.otis.xml" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <ProjectReference Include="..\Otis\Otis.csproj">
  88. <Project>{B81906CB-F063-4D3F-AE7F-23C4475EE158}</Project>
  89. <Name>Otis</Name>
  90. </ProjectReference>
  91. </ItemGroup>
  92. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  93. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  94. Other similar extension points exist, see Microsoft.Common.targets.
  95. <Target Name="BeforeBuild">
  96. </Target>
  97. <Target Name="AfterBuild">
  98. </Target>
  99. -->
  100. </Project>