Compare commits
3 Commits
3cc1631d5a
...
1.4.3.1
| Author | SHA1 | Date | |
|---|---|---|---|
| fe92236978 | |||
| ff101bf569 | |||
| 74fddcdb9d |
@@ -169,7 +169,7 @@
|
||||
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_058C8316BA034FF38880D3C8838A3F74"
|
||||
{
|
||||
"SourcePath" = "8:E:\\Development\\Scripts\\CM3Merge\\merged-cars.json"
|
||||
"TargetName" = "8:car_data,json"
|
||||
"TargetName" = "8:car_data.json"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_91D306E0AE6B4CA09DB4A07129FBDD93"
|
||||
"Condition" = "8:"
|
||||
@@ -358,15 +358,15 @@
|
||||
{
|
||||
"Name" = "8:Microsoft Visual Studio"
|
||||
"ProductName" = "8:Car Manager 3"
|
||||
"ProductCode" = "8:{3979D343-890D-4FBC-B3FE-E88437307108}"
|
||||
"PackageCode" = "8:{8B59CA5B-CD06-41DC-95A6-3323553D4997}"
|
||||
"ProductCode" = "8:{019F61F2-9751-4419-A752-CB720325E3A7}"
|
||||
"PackageCode" = "8:{831DA8BC-D3ED-4690-AA5B-7974A8D73953}"
|
||||
"UpgradeCode" = "8:{6FF57925-465E-4DB9-85DA-CE933191A3DD}"
|
||||
"AspNetVersion" = "8:2.0.50727.0"
|
||||
"RestartWWWService" = "11:FALSE"
|
||||
"RemovePreviousVersions" = "11:TRUE"
|
||||
"DetectNewerInstalledVersion" = "11:TRUE"
|
||||
"InstallAllUsers" = "11:FALSE"
|
||||
"ProductVersion" = "8:1.4.2"
|
||||
"ProductVersion" = "8:1.4.3.1"
|
||||
"Manufacturer" = "8:Jaro Digital"
|
||||
"ARPHELPTELEPHONE" = "8:"
|
||||
"ARPHELPLINK" = "8:"
|
||||
@@ -1084,7 +1084,7 @@
|
||||
{
|
||||
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A6F761D38264485ABAB61B553E1CAE3C"
|
||||
{
|
||||
"SourcePath" = "8:..\\CarManagerV3\\bin\\Debug\\net8.0-windows\\win-x64\\publish\\CarManagerV3.exe"
|
||||
"SourcePath" = "8:..\\CarManagerV3\\bin\\Release\\net8.0-windows\\win-x64\\publish\\CarManagerV3.exe"
|
||||
"TargetName" = "8:"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_B69138933B80450EA18D704C54E8913F"
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>1.4.2</ApplicationVersion>
|
||||
<ApplicationVersion>1.4.3.1</ApplicationVersion>
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
@@ -25,7 +25,7 @@
|
||||
<ApplicationIcon>CarMgm_Icon.ico</ApplicationIcon>
|
||||
<AssemblyTitle>CarManager3</AssemblyTitle>
|
||||
<Product>CarManager3</Product>
|
||||
<Version>1.4.2</Version>
|
||||
<Version>1.4.3.1</Version>
|
||||
<Authors>Jaro Digital</Authors>
|
||||
<Company>Jaro Digital</Company>
|
||||
<Title>Car Manager 3</Title>
|
||||
|
||||
@@ -218,7 +218,7 @@ namespace CarManagerV3
|
||||
Car other = cars.Where(c => c.Order < order).OrderByDescending(c => c.Order).FirstOrDefault();
|
||||
if (other != null)
|
||||
{
|
||||
Console.WriteLine($"Swapping order of {car.ToString()} ({car.Order}) and {other.ToString()} ({other.Order})");
|
||||
System.Diagnostics.Debug.WriteLine($"Swapping order of {car.ToString()} ({car.Order}) and {other.ToString()} ({other.Order})");
|
||||
int temp = car.Order;
|
||||
car.Order = other.Order;
|
||||
other.Order = temp;
|
||||
@@ -235,7 +235,7 @@ namespace CarManagerV3
|
||||
Car other = cars.Where(c => c.Order > order).OrderBy(c => c.Order).FirstOrDefault();
|
||||
if (other != null)
|
||||
{
|
||||
Console.WriteLine($"Swapping order of {car.ToString()} ({car.Order}) and {other.ToString()} ({other.Order})");
|
||||
System.Diagnostics.Debug.WriteLine($"Swapping order of {car.ToString()} ({car.Order}) and {other.ToString()} ({other.Order})");
|
||||
int temp = car.Order;
|
||||
car.Order = other.Order;
|
||||
other.Order = temp;
|
||||
|
||||
@@ -50,11 +50,11 @@ namespace CarManagerV3
|
||||
{
|
||||
try
|
||||
{
|
||||
//string directory = Path.GetDirectoryName(path);
|
||||
string directory = Path.GetDirectoryName(path);
|
||||
Console.WriteLine($"Initializing file and folders for path: {path}");
|
||||
if (!Directory.Exists(path))
|
||||
if (!Directory.Exists(directory))
|
||||
{
|
||||
Directory.CreateDirectory(path);
|
||||
Directory.CreateDirectory(directory);
|
||||
}
|
||||
if(!folderOnly) InitializeFile(path);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user