OpenSim.GUI.csproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>{78AEEDD5-4DA8-4E05-8D53-F3C5476A0B97}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>OpenSim.GUI</RootNamespace>
  11. <AssemblyName>OpenSim.GUI</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>..\..\..\bin\</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>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="frmConfiguration.cs">
  40. <SubType>Form</SubType>
  41. </Compile>
  42. <Compile Include="frmConfiguration.Designer.cs">
  43. <DependentUpon>frmConfiguration.cs</DependentUpon>
  44. </Compile>
  45. <Compile Include="InputTextBoxControl.cs">
  46. <SubType>Component</SubType>
  47. </Compile>
  48. <Compile Include="Main.cs">
  49. <SubType>Form</SubType>
  50. </Compile>
  51. <Compile Include="Main.Designer.cs">
  52. <DependentUpon>Main.cs</DependentUpon>
  53. </Compile>
  54. <Compile Include="ProcessManager.cs">
  55. <SubType>Component</SubType>
  56. </Compile>
  57. <Compile Include="Program.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <EmbeddedResource Include="frmConfiguration.resx">
  60. <SubType>Designer</SubType>
  61. <DependentUpon>frmConfiguration.cs</DependentUpon>
  62. </EmbeddedResource>
  63. <EmbeddedResource Include="Main.resx">
  64. <SubType>Designer</SubType>
  65. <DependentUpon>Main.cs</DependentUpon>
  66. </EmbeddedResource>
  67. <EmbeddedResource Include="Properties\Resources.resx">
  68. <Generator>ResXFileCodeGenerator</Generator>
  69. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  70. <SubType>Designer</SubType>
  71. </EmbeddedResource>
  72. <Compile Include="Properties\Resources.Designer.cs">
  73. <AutoGen>True</AutoGen>
  74. <DependentUpon>Resources.resx</DependentUpon>
  75. </Compile>
  76. <None Include="Properties\Settings.settings">
  77. <Generator>SettingsSingleFileGenerator</Generator>
  78. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  79. </None>
  80. <Compile Include="Properties\Settings.Designer.cs">
  81. <AutoGen>True</AutoGen>
  82. <DependentUpon>Settings.settings</DependentUpon>
  83. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  84. </Compile>
  85. </ItemGroup>
  86. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. </Project>