Oreo.FileMan.csproj 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{44A1823B-EA31-4BAF-B264-0471C149D703}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Oreo.FileMan</RootNamespace>
  11. <AssemblyName>Oreo.FileMan</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <UseVSHostingProcess>false</UseVSHostingProcess>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Configuration" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Xml.Linq" />
  41. <Reference Include="System.Data.DataSetExtensions" />
  42. <Reference Include="Microsoft.CSharp" />
  43. <Reference Include="System.Data" />
  44. <Reference Include="System.Deployment" />
  45. <Reference Include="System.Drawing" />
  46. <Reference Include="System.Net.Http" />
  47. <Reference Include="System.Windows.Forms" />
  48. <Reference Include="System.Xml" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="Program.cs" />
  52. <Compile Include="Properties\AssemblyInfo.cs" />
  53. <Compile Include="Views\MainForm.cs">
  54. <SubType>Form</SubType>
  55. </Compile>
  56. <Compile Include="Views\MainForm.Designer.cs">
  57. <DependentUpon>MainForm.cs</DependentUpon>
  58. </Compile>
  59. <EmbeddedResource Include="Properties\Resources.resx">
  60. <Generator>ResXFileCodeGenerator</Generator>
  61. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  62. <SubType>Designer</SubType>
  63. </EmbeddedResource>
  64. <Compile Include="Properties\Resources.Designer.cs">
  65. <AutoGen>True</AutoGen>
  66. <DependentUpon>Resources.resx</DependentUpon>
  67. </Compile>
  68. <EmbeddedResource Include="Views\MainForm.resx">
  69. <DependentUpon>MainForm.cs</DependentUpon>
  70. </EmbeddedResource>
  71. <None Include="Properties\Settings.settings">
  72. <Generator>SettingsSingleFileGenerator</Generator>
  73. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  74. </None>
  75. <Compile Include="Properties\Settings.Designer.cs">
  76. <AutoGen>True</AutoGen>
  77. <DependentUpon>Settings.settings</DependentUpon>
  78. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  79. </Compile>
  80. </ItemGroup>
  81. <ItemGroup>
  82. <None Include="App.config" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <Folder Include="Commons\" />
  86. <Folder Include="Models\" />
  87. <Folder Include="Services\" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <ProjectReference Include="..\..\Y.Utils\Y.Utils.csproj">
  91. <Project>{5b8eeec7-aeb5-407d-9dc1-1c59e53f78d5}</Project>
  92. <Name>Y.Utils</Name>
  93. </ProjectReference>
  94. </ItemGroup>
  95. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  96. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  97. Other similar extension points exist, see Microsoft.Common.targets.
  98. <Target Name="BeforeBuild">
  99. </Target>
  100. <Target Name="AfterBuild">
  101. </Target>
  102. -->
  103. </Project>