PageRenderTime 38ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/Samples/ExampleToolForm/ExampleToolForm.csproj

#
MSBuild | 111 lines | 104 code | 0 blank | 7 comment | 0 complexity | 5273bcd6d98dc027cf9fa3c44a5518c9 MD5 | raw file
Possible License(s): Apache-2.0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{3AB26E89-B43D-4F74-92F2-AE0490730699}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Delta.Tools.ExampleToolForm</RootNamespace>
  12. <AssemblyName>Delta.Tools.ExampleToolForm</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  18. <DebugSymbols>true</DebugSymbols>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <DebugType>full</DebugType>
  22. <PlatformTarget>x86</PlatformTarget>
  23. <ErrorReport>prompt</ErrorReport>
  24. <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
  25. <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
  26. </PropertyGroup>
  27. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <Optimize>true</Optimize>
  31. <DebugType>pdbonly</DebugType>
  32. <PlatformTarget>x86</PlatformTarget>
  33. <ErrorReport>prompt</ErrorReport>
  34. <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
  35. <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
  36. </PropertyGroup>
  37. <PropertyGroup>
  38. <StartupObject>Delta.Tools.ExampleToolForm.Program</StartupObject>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="System" />
  42. <Reference Include="System.Drawing" />
  43. <Reference Include="System.Windows.Forms" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="ExampleForm.cs">
  47. <SubType>Form</SubType>
  48. </Compile>
  49. <Compile Include="ExampleForm.Designer.cs">
  50. <DependentUpon>ExampleForm.cs</DependentUpon>
  51. </Compile>
  52. <Compile Include="Program.cs" />
  53. <Compile Include="Properties\AssemblyInfo.cs" />
  54. <EmbeddedResource Include="ExampleForm.resx">
  55. <DependentUpon>ExampleForm.cs</DependentUpon>
  56. </EmbeddedResource>
  57. <EmbeddedResource Include="Properties\Resources.resx">
  58. <Generator>ResXFileCodeGenerator</Generator>
  59. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  60. <SubType>Designer</SubType>
  61. </EmbeddedResource>
  62. <Compile Include="Properties\Resources.Designer.cs">
  63. <AutoGen>True</AutoGen>
  64. <DependentUpon>Resources.resx</DependentUpon>
  65. <DesignTime>True</DesignTime>
  66. </Compile>
  67. <None Include="app.config">
  68. <SubType>Designer</SubType>
  69. </None>
  70. <None Include="Properties\Settings.settings">
  71. <Generator>SettingsSingleFileGenerator</Generator>
  72. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  73. </None>
  74. <Compile Include="Properties\Settings.Designer.cs">
  75. <AutoGen>True</AutoGen>
  76. <DependentUpon>Settings.settings</DependentUpon>
  77. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  78. </Compile>
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Reference Include="Delta.ContentSystem">
  82. <HintPath>..\..\Dlls\Delta.ContentSystem.dll</HintPath>
  83. </Reference>
  84. <Reference Include="Delta.Engine">
  85. <HintPath>..\..\Dlls\Delta.Engine.dll</HintPath>
  86. </Reference>
  87. <Reference Include="Delta.InputSystem">
  88. <HintPath>..\..\Dlls\Delta.InputSystem.dll</HintPath>
  89. </Reference>
  90. <Reference Include="Delta.Platforms.Windows">
  91. <HintPath>..\..\Dlls\Delta.Platforms.Windows.dll</HintPath>
  92. </Reference>
  93. <Reference Include="Delta.Rendering.Basics">
  94. <HintPath>..\..\Dlls\Delta.Rendering.Basics.dll</HintPath>
  95. </Reference>
  96. <Reference Include="Delta.Rendering">
  97. <HintPath>..\..\Dlls\Delta.Rendering.dll</HintPath>
  98. </Reference>
  99. <Reference Include="Delta.Utilities">
  100. <HintPath>..\..\Dlls\Delta.Utilities.dll</HintPath>
  101. </Reference>
  102. </ItemGroup>
  103. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  104. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  105. Other similar extension points exist, see Microsoft.Common.targets.
  106. <Target Name="BeforeBuild">
  107. </Target>
  108. <Target Name="AfterBuild">
  109. </Target>
  110. -->
  111. </Project>