APL_Macro.csproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{B54898DD-D4DB-4B92-8B8D-825FFF2A89CA}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>APL_Macro</RootNamespace>
  10. <AssemblyName>APL_Macro</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  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. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  36. <DebugSymbols>true</DebugSymbols>
  37. <OutputPath>bin\x86\Debug\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <DebugType>full</DebugType>
  40. <PlatformTarget>x86</PlatformTarget>
  41. <ErrorReport>prompt</ErrorReport>
  42. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  43. <Prefer32Bit>true</Prefer32Bit>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  46. <OutputPath>bin\x86\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <Optimize>true</Optimize>
  49. <DebugType>pdbonly</DebugType>
  50. <PlatformTarget>x86</PlatformTarget>
  51. <ErrorReport>prompt</ErrorReport>
  52. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  53. <Prefer32Bit>true</Prefer32Bit>
  54. </PropertyGroup>
  55. <ItemGroup>
  56. <Reference Include="System" />
  57. <Reference Include="System.Core" />
  58. <Reference Include="System.Management" />
  59. <Reference Include="System.Management.Instrumentation" />
  60. <Reference Include="System.Xml.Linq" />
  61. <Reference Include="System.Data.DataSetExtensions" />
  62. <Reference Include="Microsoft.CSharp" />
  63. <Reference Include="System.Data" />
  64. <Reference Include="System.Deployment" />
  65. <Reference Include="System.Drawing" />
  66. <Reference Include="System.Net.Http" />
  67. <Reference Include="System.Windows.Forms" />
  68. <Reference Include="System.Xml" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="Form1.cs">
  72. <SubType>Form</SubType>
  73. </Compile>
  74. <Compile Include="Form1.Designer.cs">
  75. <DependentUpon>Form1.cs</DependentUpon>
  76. </Compile>
  77. <Compile Include="Program.cs" />
  78. <Compile Include="Properties\AssemblyInfo.cs" />
  79. <EmbeddedResource Include="Form1.resx">
  80. <DependentUpon>Form1.cs</DependentUpon>
  81. </EmbeddedResource>
  82. <EmbeddedResource Include="Properties\Resources.resx">
  83. <Generator>ResXFileCodeGenerator</Generator>
  84. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  85. <SubType>Designer</SubType>
  86. </EmbeddedResource>
  87. <Compile Include="Properties\Resources.Designer.cs">
  88. <AutoGen>True</AutoGen>
  89. <DependentUpon>Resources.resx</DependentUpon>
  90. </Compile>
  91. <None Include="Properties\Settings.settings">
  92. <Generator>SettingsSingleFileGenerator</Generator>
  93. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  94. </None>
  95. <Compile Include="Properties\Settings.Designer.cs">
  96. <AutoGen>True</AutoGen>
  97. <DependentUpon>Settings.settings</DependentUpon>
  98. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  99. </Compile>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <None Include="App.config" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <COMReference Include="Microsoft.Office.Core">
  106. <Guid>{2DF8D04C-5BFA-101B-BDE5-00AA0044DE52}</Guid>
  107. <VersionMajor>2</VersionMajor>
  108. <VersionMinor>8</VersionMinor>
  109. <Lcid>0</Lcid>
  110. <WrapperTool>primary</WrapperTool>
  111. <Isolated>False</Isolated>
  112. <EmbedInteropTypes>True</EmbedInteropTypes>
  113. </COMReference>
  114. <COMReference Include="Microsoft.Office.Interop.Excel">
  115. <Guid>{00020813-0000-0000-C000-000000000046}</Guid>
  116. <VersionMajor>1</VersionMajor>
  117. <VersionMinor>9</VersionMinor>
  118. <Lcid>0</Lcid>
  119. <WrapperTool>primary</WrapperTool>
  120. <Isolated>False</Isolated>
  121. <EmbedInteropTypes>True</EmbedInteropTypes>
  122. </COMReference>
  123. <COMReference Include="VBIDE">
  124. <Guid>{0002E157-0000-0000-C000-000000000046}</Guid>
  125. <VersionMajor>5</VersionMajor>
  126. <VersionMinor>3</VersionMinor>
  127. <Lcid>0</Lcid>
  128. <WrapperTool>primary</WrapperTool>
  129. <Isolated>False</Isolated>
  130. <EmbedInteropTypes>True</EmbedInteropTypes>
  131. </COMReference>
  132. </ItemGroup>
  133. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  134. </Project>