-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from dotnet-campus/t/lindexi
开发者设置文件放在NuGet包的路径
- Loading branch information
Showing
8 changed files
with
180 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Version>0.1.19262-alpha</Version> | ||
<Version>0.1.19317-alpha</Version> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/dotnetCampus.SourceYard/Context/SourceYardPackageFile.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System.IO; | ||
|
||
namespace dotnetCampus.SourceYard.Context | ||
{ | ||
/// <summary> | ||
/// 放在源代码包的文件 | ||
/// </summary> | ||
public class SourceYardPackageFile | ||
{ | ||
public SourceYardPackageFile(FileInfo sourceFile, string sourcePackagePath) | ||
{ | ||
SourceFile = sourceFile; | ||
SourcePackagePath = sourcePackagePath; | ||
} | ||
|
||
/// <summary> | ||
/// 源代码的文件 | ||
/// </summary> | ||
public FileInfo SourceFile { get; } | ||
|
||
/// <summary> | ||
/// 打包的路径 | ||
/// </summary> | ||
public string SourcePackagePath { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.