Moved PathFragments from SetupTmplCode to extra class.
This commit is contained in:
@ -2,13 +2,13 @@
|
||||
{
|
||||
public class PhysicalFile
|
||||
{
|
||||
public PhysicalFile(string sourcePath, string targetPath)
|
||||
public PhysicalFile(string source, string target)
|
||||
{
|
||||
SourcePath = sourcePath;
|
||||
TargetPath = targetPath;
|
||||
Source = source;
|
||||
Target = target;
|
||||
}
|
||||
|
||||
public string SourcePath { get; }
|
||||
public string TargetPath { get; }
|
||||
public string Source { get; }
|
||||
public string Target { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user