starter.csproj 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProjectGuid>{58CD5858-5E09-42BF-8AB6-93A84328940D}</ProjectGuid>
  7. <OutputType>WinExe</OutputType>
  8. <RootNamespace>starter</RootNamespace>
  9. <AssemblyName>starter</AssemblyName>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  12. <DebugSymbols>true</DebugSymbols>
  13. <DebugType>full</DebugType>
  14. <Optimize>false</Optimize>
  15. <OutputPath>bin\Debug</OutputPath>
  16. <DefineConstants>DEBUG;</DefineConstants>
  17. <ErrorReport>prompt</ErrorReport>
  18. <WarningLevel>4</WarningLevel>
  19. <ConsolePause>false</ConsolePause>
  20. <PlatformTarget>x86</PlatformTarget>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  23. <DebugType>full</DebugType>
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release</OutputPath>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <ConsolePause>false</ConsolePause>
  29. <PlatformTarget>x86</PlatformTarget>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Reference Include="System" />
  33. <Reference Include="gtk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  34. <SpecificVersion>False</SpecificVersion>
  35. </Reference>
  36. <Reference Include="gdk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  37. <SpecificVersion>False</SpecificVersion>
  38. </Reference>
  39. <Reference Include="glib-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  40. <SpecificVersion>False</SpecificVersion>
  41. </Reference>
  42. <Reference Include="glade-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  43. <SpecificVersion>False</SpecificVersion>
  44. </Reference>
  45. <Reference Include="pango-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  46. <SpecificVersion>False</SpecificVersion>
  47. </Reference>
  48. <Reference Include="atk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  49. <SpecificVersion>False</SpecificVersion>
  50. </Reference>
  51. <Reference Include="Mono.Posix" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <EmbeddedResource Include="gtk-gui\gui.stetic">
  55. <LogicalName>gui.stetic</LogicalName>
  56. </EmbeddedResource>
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="gtk-gui\generated.cs" />
  60. <Compile Include="MainWindow.cs" />
  61. <Compile Include="gtk-gui\MainWindow.cs" />
  62. <Compile Include="Program.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. <Compile Include="ProjectDialog.cs" />
  65. <Compile Include="gtk-gui\starter.ProjectDialog.cs" />
  66. </ItemGroup>
  67. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  68. </Project>