加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Directory.Build.props 2.10 KB
一键复制 编辑 原始数据 按行查看 历史
写代码的厨子 提交于 2022-01-04 11:21 . release v1.0.2-dev
<Project>
<Import Project="Version.props" />
<PropertyGroup>
<!--统一所有项目输出目录-->
<!--$(Platform)-->
<OutputPath>$(SolutionDir)Output\bin\$(Configuration)</OutputPath>
<PackageOutputPath>$(OutputPath)</PackageOutputPath>
<!--<BaseIntermediateOutputPath>$(SolutionDir)Output\obj\$(Platform)</BaseIntermediateOutputPath>-->
<IntermediateOutputPath>$(SolutionDir)Output\obj\$(Configuration)\$(MSBuildProjectName)</IntermediateOutputPath>
<UseHostCompilerIfAvailable>false</UseHostCompilerIfAvailable>
<TargetFrameworks>net46;net461;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<Platforms>AnyCPU;x64;x86</Platforms>
<LangVersion>9.0</LangVersion>
<!--指示编译器是否应为相同的输入产生相同的程序集-->
<Deterministic>true</Deterministic>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Version>1.0.2-dev-20220104</Version>
<!--CookPopularControl Nuget包说明配置 $(MSBuildToolsPath)-->
<PackageId>$(MSBuildProjectName)</PackageId>
<Authors>写代码的厨子</Authors>
<Company>写代码的厨子</Company>
<Product>$(MSBuildProjectName)</Product>
<Title>$(MSBuildProjectName)</Title>
<Description>兼容.NetFramework与.NetCore/.Net的WPF控件库</Description>
<Copyright>Copyright © $(MSBuildProjectName) 2021</Copyright>
<PackageTags>xaml,wpf,ui,controls,windows,desktop,cookpopularcontrol,library</PackageTags>
<RepositoryUrl>https://gitee.com/cook-csharp/$(MSBuildProjectName)</RepositoryUrl>
<PackageProjectUrl>https://github.com/chancezheng/CookPopularControl</PackageProjectUrl>
<PackageReleaseNotes>预发行版</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>$(SolutionDir)Output\bin\Debug</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>$(SolutionDir)Output\bin\Release</OutputPath>
</PropertyGroup>
</Project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化