The application will written appdata\programs, PhysicalFile is now a struct. should be enough
This commit is contained in:
parent
7009fb1690
commit
eaec8c632b
@ -1,6 +1,6 @@
|
|||||||
namespace KattekerCreator
|
namespace KattekerCreator
|
||||||
{
|
{
|
||||||
public class PhysicalFile
|
public struct PhysicalFile
|
||||||
{
|
{
|
||||||
public PhysicalFile(string source, string target)
|
public PhysicalFile(string source, string target)
|
||||||
{
|
{
|
||||||
@ -8,7 +8,7 @@
|
|||||||
Target = target;
|
Target = target;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Source { get; }
|
public readonly string Source;
|
||||||
public string Target { get; }
|
public readonly string Target;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -18,7 +18,7 @@ ManifestDPIAware true
|
|||||||
|
|
||||||
Name "${APPNAME}"
|
Name "${APPNAME}"
|
||||||
OutFile "<#= OutFile #>"
|
OutFile "<#= OutFile #>"
|
||||||
InstallDir "$LOCALAPPDATA\${APPNAME}"
|
InstallDir "$LOCALAPPDATA\Programs\${APPNAME}"
|
||||||
RequestExecutionLevel user
|
RequestExecutionLevel user
|
||||||
SetCompressor /SOLID lzma
|
SetCompressor /SOLID lzma
|
||||||
SilentUnInstall silent
|
SilentUnInstall silent
|
||||||
|
Loading…
x
Reference in New Issue
Block a user