FileExpander.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{7A3E4609-7FDD-4CE9-8671-82F7049F51B0}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>FileExpander</RootNamespace>
  11. <AssemblyName>FileExpander</AssemblyName>
  12. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <Deterministic>true</Deterministic>
  16. <NuGetPackageImportStamp>
  17. </NuGetPackageImportStamp>
  18. <TargetFrameworkProfile />
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <PlatformTarget>AnyCPU</PlatformTarget>
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>bin\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <LangVersion>latest</LangVersion>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <PlatformTarget>AnyCPU</PlatformTarget>
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. <LangVersion>latest</LangVersion>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Deployment" />
  49. <Reference Include="System.Drawing" />
  50. <Reference Include="System.Net.Http" />
  51. <Reference Include="System.Windows.Forms" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="FileExpanderForm.cs">
  56. <SubType>Form</SubType>
  57. </Compile>
  58. <Compile Include="FileExpanderForm.Designer.cs">
  59. <DependentUpon>FileExpanderForm.cs</DependentUpon>
  60. </Compile>
  61. <Compile Include="Program.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. <EmbeddedResource Include="FileExpanderForm.resx">
  64. <DependentUpon>FileExpanderForm.cs</DependentUpon>
  65. </EmbeddedResource>
  66. <EmbeddedResource Include="Properties\Resources.resx">
  67. <Generator>ResXFileCodeGenerator</Generator>
  68. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  69. <SubType>Designer</SubType>
  70. </EmbeddedResource>
  71. <Compile Include="Properties\Resources.Designer.cs">
  72. <AutoGen>True</AutoGen>
  73. <DependentUpon>Resources.resx</DependentUpon>
  74. <DesignTime>True</DesignTime>
  75. </Compile>
  76. <None Include="packages.config" />
  77. <None Include="Properties\Settings.settings">
  78. <Generator>SettingsSingleFileGenerator</Generator>
  79. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  80. </None>
  81. <Compile Include="Properties\Settings.Designer.cs">
  82. <AutoGen>True</AutoGen>
  83. <DependentUpon>Settings.settings</DependentUpon>
  84. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  85. </Compile>
  86. </ItemGroup>
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  88. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  89. <PropertyGroup>
  90. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  91. </PropertyGroup>
  92. <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'))" />
  93. </Target>
  94. <PropertyGroup>
  95. <PostBuildEvent>if $(ConfigurationName) == Release if not exist "$(TargetDir)Packed" md "$(TargetDir)Packed"
  96. if $(ConfigurationName) == Release $(ILRepack) /ndebug "/out:$(TargetDir)Packed\$(TargetFileName)" "$(TargetPath)"
  97. if $(ConfigurationName) == Release if exist "$(TargetDir)Packed\$(TargetFileName).config" del "$(TargetDir)Packed\$(TargetFileName).config"</PostBuildEvent>
  98. </PropertyGroup>
  99. </Project>