提交 7e3720e1 编写于 作者: lindexi_gd's avatar lindexi_gd

修复输出到空文件夹

上级 d58b7f21
......@@ -121,7 +121,7 @@
<SourceMSBuildProjectFullPath>-p "$(MSBuildProjectFullPath)"</SourceMSBuildProjectFullPath>
<SourcePackageOutputPath Condition="'$(PackageOutputPath)' != ''">-n "$(PackageOutputPath) "</SourcePackageOutputPath>
<SourcePackageOutputPath Condition="'$(PackageOutputPath)' == '' and $(OutputPath) != ''">-n "$(OutputPath) "</SourcePackageOutputPath>
<SourcePackageOutputPath Condition="'$(SourcePackageOutputPath)' == '' and $(OutputPath) != ''">-n "$(OutputPath) "</SourcePackageOutputPath>
</PropertyGroup>
......
......@@ -93,6 +93,10 @@ namespace dotnetCampus.SourceYard
// 安装的项目的兼容性无法处理?源代码包有 net45 框架,项目是 net47 框架,如何让项目能兼容使用到 net45 框架?当前没有此生成逻辑
var sourcePackingFolder = GetCommonSourcePackingFolder(multiTargetingPackageInfo, logger);
var packageOutputPath = options.PackageOutputPath;
if (!string.IsNullOrEmpty(packageOutputPath))
{
packageOutputPath = packageOutputPath.Trim();
}
var packageVersion = options.PackageVersion;
// logger.Message($@"项目文件 {projectFile}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册