MiscToolSet.csproj 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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="C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props" Condition="Exists('C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{9A38DF9F-2A22-413A-B51B-5647DCA8F131}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>MiscToolSet</RootNamespace>
  12. <AssemblyName>MiscToolSet</AssemblyName>
  13. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <NuGetPackageImportStamp>
  16. </NuGetPackageImportStamp>
  17. <TargetFrameworkProfile />
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <PlatformTarget>AnyCPU</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="Microsoft.AspNet.Identity.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  43. <HintPath>C:\NuGetLocalRepo\Microsoft.AspNet.Identity.Core.2.2.3\lib\net45\Microsoft.AspNet.Identity.Core.dll</HintPath>
  44. <Private>True</Private>
  45. </Reference>
  46. <Reference Include="System" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Web" />
  49. <Reference Include="System.Xml.Linq" />
  50. <Reference Include="System.Data.DataSetExtensions" />
  51. <Reference Include="Microsoft.CSharp" />
  52. <Reference Include="System.Data" />
  53. <Reference Include="System.Deployment" />
  54. <Reference Include="System.Drawing" />
  55. <Reference Include="System.Net.Http" />
  56. <Reference Include="System.Windows.Forms" />
  57. <Reference Include="System.Xml" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="MainForm.cs">
  61. <SubType>Form</SubType>
  62. </Compile>
  63. <Compile Include="MainForm.Designer.cs">
  64. <DependentUpon>MainForm.cs</DependentUpon>
  65. </Compile>
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. <EmbeddedResource Include="MainForm.resx">
  68. <DependentUpon>MainForm.cs</DependentUpon>
  69. </EmbeddedResource>
  70. </ItemGroup>
  71. <ItemGroup>
  72. <None Include="app.config" />
  73. <None Include="packages.config" />
  74. </ItemGroup>
  75. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  76. <PropertyGroup>
  77. <PostBuildEvent>
  78. if $(ConfigurationName) == Release if not exist $(TargetDir)Packed md $(TargetDir)Packed
  79. if $(ConfigurationName) == Release $(ILRepack) /ndebug /out:$(TargetDir)Packed\$(TargetFileName) $(TargetPath) Microsoft.AspNet.Identity.Core.dll
  80. if $(ConfigurationName) == Release if exist $(TargetDir)Packed\$(TargetFileName).config del $(TargetDir)Packed\$(TargetFileName).config</PostBuildEvent>
  81. </PropertyGroup>
  82. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  83. <PropertyGroup>
  84. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  85. </PropertyGroup>
  86. <Error Condition="!Exists('C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props')" Text="$([System.String]::Format('$(ErrorText)', 'C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props'))" />
  87. </Target>
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>