Sorry that the README is not complete
This commit is contained in:
parent
3e76fef7cb
commit
76cd0a4e75
|
@ -82,7 +82,7 @@ public class TimelapsePack
|
|||
{
|
||||
//build the library
|
||||
Process p = new Process();
|
||||
p.StartInfo = new ProcessStartInfo("dotnet","build --configuration release");
|
||||
p.StartInfo = new ProcessStartInfo("dotnet","build --configuration Release");
|
||||
p.StartInfo.UseShellExecute=false;
|
||||
if(p.Start())
|
||||
{
|
||||
|
@ -110,7 +110,7 @@ public class TimelapsePack
|
|||
}
|
||||
string fname =Path.GetFileName(f);
|
||||
|
||||
DirCopy(f,fname,copyItem);
|
||||
DirCopy(f,Path.Combine(src,fname),copyItem);
|
||||
}
|
||||
|
||||
foreach(var f in Directory.GetFiles(src))
|
||||
|
@ -120,7 +120,7 @@ public class TimelapsePack
|
|||
continue;
|
||||
}
|
||||
string fname =Path.GetFileName(f);
|
||||
File.Copy(f,fname);
|
||||
File.Copy(f,Path.Combine(src,fname));
|
||||
}
|
||||
}
|
||||
public static string? Pack(string? outname)
|
||||
|
|
|
@ -17,9 +17,9 @@
|
|||
<PackageId>Tesses.TimelapsePack</PackageId>
|
||||
<Authors>Mike Nolan</Authors>
|
||||
<Company>Tesses</Company>
|
||||
<Version>1.0.0</Version>
|
||||
<AssemblyVersion>1.0.0</AssemblyVersion>
|
||||
<FileVersion>1.0.0</FileVersion>
|
||||
<Version>1.0.1</Version>
|
||||
<AssemblyVersion>1.0.1</AssemblyVersion>
|
||||
<FileVersion>1.0.1</FileVersion>
|
||||
<Description>Extension Packaging tool for TimelapseNow</Description>
|
||||
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
|
||||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||
|
|
Loading…
Reference in New Issue