Skip to content

Commit 4206ccd

Browse files
committed
Write installer-log.txt relative to assembly
1 parent 4777edf commit 4206ccd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
// You can specify all the values or you can default the Build and Revision Numbers
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
37-
[assembly: AssemblyVersion("18.05.6.*")]
37+
[assembly: AssemblyVersion("18.05.7.*")]
3838
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ static void Main(string[] args) {
1818
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
1919

2020
const string logDefaultName = "installer-log.txt";
21-
string log = Path.GetFullPath(logDefaultName);
21+
string log = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), logDefaultName);
2222

2323
Queue<string> argsQueue = new Queue<string>(args);
2424
Queue<string> argsLateQueue = new Queue<string>();

0 commit comments

Comments
 (0)