UnitEditor.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{5F034BDB-0B44-4ED5-A95A-72BF1701F05C}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>UnitEditor</RootNamespace>
  11. <AssemblyName>UnitEditor</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>false</ConsolePause>
  22. <PlatformTarget>x86</PlatformTarget>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  25. <DebugType>full</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <ConsolePause>false</ConsolePause>
  31. <PlatformTarget>x86</PlatformTarget>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="gtk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  36. <SpecificVersion>False</SpecificVersion>
  37. </Reference>
  38. <Reference Include="gdk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  39. <SpecificVersion>False</SpecificVersion>
  40. </Reference>
  41. <Reference Include="glib-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  42. <SpecificVersion>False</SpecificVersion>
  43. </Reference>
  44. <Reference Include="glade-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  45. <SpecificVersion>False</SpecificVersion>
  46. </Reference>
  47. <Reference Include="pango-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  48. <SpecificVersion>False</SpecificVersion>
  49. </Reference>
  50. <Reference Include="atk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  51. <SpecificVersion>False</SpecificVersion>
  52. </Reference>
  53. <Reference Include="Mono.Posix" />
  54. <Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=c7439020c8fedf87">
  55. <Private>False</Private>
  56. <Package>monodevelop</Package>
  57. </Reference>
  58. <Reference Include="System.Xml" />
  59. <Reference Include="System.Xml.Linq" />
  60. <Reference Include="Newtonsoft.Json">
  61. <HintPath>..\..\..\..\..\..\Scaricati\jsondotnet\Bin\Net35\Newtonsoft.Json.dll</HintPath>
  62. </Reference>
  63. <Reference Include="System.Data" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <EmbeddedResource Include="gtk-gui\gui.stetic">
  67. <LogicalName>gui.stetic</LogicalName>
  68. </EmbeddedResource>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="gtk-gui\generated.cs" />
  72. <Compile Include="MainWindow.cs" />
  73. <Compile Include="gtk-gui\MainWindow.cs" />
  74. <Compile Include="Program.cs" />
  75. <Compile Include="Properties\AssemblyInfo.cs" />
  76. <Compile Include="RenderablesList.cs" />
  77. <Compile Include="gtk-gui\UnitEditor.RenderablesList.cs" />
  78. <Compile Include="Types.cs" />
  79. <Compile Include="MainMenu.cs" />
  80. <Compile Include="gtk-gui\UnitEditor.MainMenu.cs" />
  81. <Compile Include="UnitFile.cs" />
  82. <Compile Include="UnitForm.cs" />
  83. <Compile Include="gtk-gui\UnitEditor.UnitForm.cs" />
  84. <Compile Include="MaterialFile.cs" />
  85. <Compile Include="PhysicsFile.cs" />
  86. </ItemGroup>
  87. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  88. </Project>