Skip to content

Commit

Permalink
Merge pull request #3 from alexanderkell/main
Browse files Browse the repository at this point in the history
Simplified cloud file name
  • Loading branch information
alexanderkell authored Mar 25, 2022
2 parents 3864103 + 14f96ca commit 3dd009d
Show file tree
Hide file tree
Showing 90 changed files with 10,973 additions and 68 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/clicSANDMac/bin/Debug/net48/clicSANDMac.app

2 changes: 1 addition & 1 deletion .vs/clicSANDMac/xs/project-cache/clicSANDLib-Debug.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .vs/clicSANDMac/xs/project-cache/clicSANDMac-Debug.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

56 changes: 54 additions & 2 deletions clicSANDLib/FormModelRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ private void buttonRun_Click(object sender, EventArgs e)
textBoxOutput.Text += new string('-', 150) + "\r\n";

//TODO Cursor.Current = Cursors.WaitCursor;

try
{
bool result = false;
Expand All @@ -53,6 +52,7 @@ private void buttonRun_Click(object sender, EventArgs e)
{
textBoxOutput.Text += "Converting results for visualisation";
ConvertResults(resultsFileName, resultsFileName);
textBoxOutput.Text += "Converted results for visualisation";
}
catch (Exception exc)
{
Expand All @@ -65,6 +65,7 @@ private void buttonRun_Click(object sender, EventArgs e)
try
{
SaveLog(logFileName, textBoxOutput.Text);

}
catch (Exception exc)
{
Expand All @@ -73,6 +74,31 @@ private void buttonRun_Click(object sender, EventArgs e)
}
}

private void buttonCloud_Click(object sender, EventArgs e)
{
string dataFileName = textBoxDataSource.Text;
string cloudFile = dataFileName.Remove(dataFileName.Length - 4) + ".cloud_data.txt";
logFileName = string.Format("{0}{1}.log.txt", textBoxDataSource.Text, DateTime.Now.ToString("yyyyMMddHHmmss"));

textBoxOutput.Text = "";

textBoxOutput.Text += new string('-', 150) + "\r\n";
textBoxOutput.Text += "Data file: " + dataFileName + "\r\n";
textBoxOutput.Text += "Cloud data file: " + cloudFile + "\r\n";
textBoxOutput.Text += new string('-', 150) + "\r\n";

// TODO Cursor.Current = Cursors.WaitCursor;
try
{
textBoxOutput.Text += "Converting files for OSeMOSYS Cloud data input \r\n";
CreateCloudInput(dataFileName, cloudFile);
}
catch (Exception exc)
{
textBoxOutput.Text += "Unable to generate OSeMOSYS Cloud input data: " + exc.Message + "\r\n";
}
}



//private bool ExtractDataFromXLS(string xlsFileName, string dataFileName)
Expand Down Expand Up @@ -106,7 +132,7 @@ private void ConvertResults(string input, string output_dir)
startInfo.FileName = path;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
string input_path = Path.GetDirectoryName(input);
startInfo.Arguments = input + " " + input_path;
startInfo.Arguments = "\"" + input + "\"" + " " + "\"" + input_path + "\"";

try
{
Expand All @@ -121,6 +147,32 @@ private void ConvertResults(string input, string output_dir)
}
}

private void CreateCloudInput(string input, string output_dir)
{
// Use ProcessStartInfo class
ProcessStartInfo startInfo = new ProcessStartInfo();
// startInfo.CreateNoWindow = false;
startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false;
string path = Path.Combine(Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location), @"Cloud/sand_filter_v2");
startInfo.FileName = path;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.Arguments = "\"" + input + "\"" + " " + "\"" + output_dir + "\"";

try
{
using (Process exeProcess = Process.Start(startInfo))
{
exeProcess.WaitForExit();
}
}
catch (Exception exc)
{
textBoxOutput.Text += "Unable to create cloud input: " + exc.Message + "\r\n";
}
}


private bool RunGLPSOL(string dataFileName, string modelFileName, string lpFileName)
{
return RunProcess(String.Format(@"{0}/glpsol", ConfigurationManager.AppSettings["glpsolLocation"]), string.Format("--check -m \"{0}\" -d \"{1}\" --wlp \"{2}\"", modelFileName, dataFileName, lpFileName));
Expand Down
12 changes: 12 additions & 0 deletions clicSANDLib/FormModelRunner.eto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ private void InitializeComponent()
this.labelModel = new Label();
this.textBoxModel = new TextBox();
this.buttonRun = new Button();
this.buttonCloud = new Button();
this.textBoxOutput = new TextArea();
this.buttonOpenXLS = new Button();
this.buttonOpenModel = new Button();
Expand Down Expand Up @@ -159,6 +160,16 @@ private void InitializeComponent()
//this.buttonSaveTemplates.UseVisualStyleBackColor = true;
this.buttonSaveTemplates.Click += new System.EventHandler<System.EventArgs>(this.buttonSaveTemplates_Click);
//
// buttonRun
//
this.layout.Add(buttonCloud, 336, 95);
this.buttonCloud.ID = "buttonCloud";
this.buttonCloud.Size = new Size(250, 23);
this.buttonCloud.TabIndex = 16;
this.buttonCloud.Text = "Generate OSeMOSYS Cloud Input Data";
//this.buttonCloud.UseVisualStyleBackColor = true;
this.buttonCloud.Click += new System.EventHandler<System.EventArgs>(this.buttonCloud_Click);
//
// FormModelRunner
//
//this.AutoScaleDimensions = new SizeF(6F, 13F);
Expand Down Expand Up @@ -206,6 +217,7 @@ private void InitializeComponent()
private NumericUpDown numericRatio;
private CheckBox checkCBCRatio;
private Button buttonSaveTemplates;
private Button buttonCloud;

private PixelLayout layout;
}
Expand Down
Binary file modified clicSANDLib/bin/Debug/netstandard2.0/clicSANDLib.dll
Binary file not shown.
Binary file modified clicSANDLib/bin/Debug/netstandard2.0/clicSANDLib.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = clicSANDLib
build_property.ProjectDir = /Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/
build_property.ProjectDir = /Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/
Binary file modified clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.assets.cache
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
/Users/alexanderkell/GitHub/SGI/clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.csproj.CoreCompileInputs.cache
/Users/alexanderkell/GitHub/SGI/clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.dll
/Users/alexanderkell/GitHub/SGI/clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.pdb
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/bin/Debug/netstandard2.0/clicSANDLib.deps.json
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/bin/Debug/netstandard2.0/clicSANDLib.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/bin/Debug/netstandard2.0/clicSANDLib.pdb
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.csproj.AssemblyReference.cache
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.GeneratedMSBuildEditorConfig.editorconfig
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.AssemblyInfoInputs.cache
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.AssemblyInfo.cs
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.csproj.CoreCompileInputs.cache
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.pdb
/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/bin/Debug/netstandard2.0/clicSANDLib.deps.json
/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/bin/Debug/netstandard2.0/clicSANDLib.dll
/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/bin/Debug/netstandard2.0/clicSANDLib.pdb
Expand Down
Binary file modified clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.dll
Binary file not shown.
Binary file modified clicSANDLib/obj/Debug/netstandard2.0/clicSANDLib.pdb
Binary file not shown.
12 changes: 6 additions & 6 deletions clicSANDLib/obj/clicSANDLib.csproj.nuget.dgspec.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
"/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj": {}
"/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj": {}
},
"projects": {
"/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj": {
"/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectName": "clicSANDLib",
"projectPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj",
"packagesPath": "/Users/alexanderkell/.nuget/packages/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/obj/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/alexanderkell/.config/NuGet/NuGet.Config"
Expand Down Expand Up @@ -63,7 +63,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.404/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.405/RuntimeIdentifierGraph.json"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions clicSANDLib/obj/project.assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -767,11 +767,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectName": "clicSANDLib",
"projectPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj",
"packagesPath": "/Users/alexanderkell/.nuget/packages/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/obj/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/alexanderkell/.config/NuGet/NuGet.Config"
Expand Down Expand Up @@ -823,7 +823,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.404/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.405/RuntimeIdentifierGraph.json"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions clicSANDLib/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "wgAotISTEg/YGpZBV8mwloqtoRDYOjnuT3J0PxaqnqwQ7KsVqxa2ucM8HvbneV/hZYWYyqEfejkn6/08MkqCuA==",
"dgSpecHash": "OjXv66ZIbjQn1T9MY05ZZGuVG4FEyoxvVAj+sByzDj9q2eKlZ9F8+TCbA7iH5/RdYGpRoGMhTRUs76UFuMLy6g==",
"success": true,
"projectFilePath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectFilePath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj",
"expectedPackageFiles": [
"/Users/alexanderkell/.nuget/packages/eto.forms/2.5.11/eto.forms.2.5.11.nupkg.sha512",
"/Users/alexanderkell/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512",
Expand Down
Binary file modified clicSANDMac.Gtk/bin/Debug/net48/clicSANDLib.dll
Binary file not shown.
Binary file modified clicSANDMac.Gtk/bin/Debug/net48/clicSANDLib.pdb
Binary file not shown.
Binary file modified clicSANDMac.Gtk/bin/Debug/net48/clicSANDMac.Gtk.exe
Binary file not shown.
Binary file modified clicSANDMac.Gtk/bin/Debug/net48/clicSANDMac.Gtk.pdb
Binary file not shown.
Binary file modified clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.assets.cache
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,34 @@
/Users/alexanderkell/GitHub/SGI/clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.csproj.CopyComplete
/Users/alexanderkell/GitHub/SGI/clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.exe
/Users/alexanderkell/GitHub/SGI/clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.pdb
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/clicSANDMac.Gtk.exe.config
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/clicSANDMac.Gtk.exe
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/clicSANDMac.Gtk.pdb
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/AtkSharp.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/CairoSharp.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/Eto.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/Eto.Gtk.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/GdkSharp.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/GioSharp.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/GLibSharp.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/GtkSharp.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/PangoSharp.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/System.ComponentModel.Annotations.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/System.Configuration.ConfigurationManager.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/System.Security.AccessControl.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/System.Security.Permissions.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/System.Security.Principal.Windows.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/clicSANDLib.dll
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/bin/Debug/net48/clicSANDLib.pdb
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.csproj.AssemblyReference.cache
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.exe.config
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.GeneratedMSBuildEditorConfig.editorconfig
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.AssemblyInfoInputs.cache
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.AssemblyInfo.cs
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.csproj.CoreCompileInputs.cache
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.csproj.CopyComplete
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.exe
/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.pdb
/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/bin/Debug/net48/clicSANDMac.Gtk.exe.config
/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/bin/Debug/net48/clicSANDMac.Gtk.exe
/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/bin/Debug/net48/clicSANDMac.Gtk.pdb
Expand Down
Binary file modified clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.exe
Binary file not shown.
Binary file modified clicSANDMac.Gtk/obj/Debug/net48/clicSANDMac.Gtk.pdb
Binary file not shown.
26 changes: 13 additions & 13 deletions clicSANDMac.Gtk/obj/clicSANDMac.Gtk.csproj.nuget.dgspec.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
"/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj": {}
"/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj": {}
},
"projects": {
"/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj": {
"/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectName": "clicSANDLib",
"projectPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj",
"projectPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj",
"packagesPath": "/Users/alexanderkell/.nuget/packages/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/obj/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/alexanderkell/.config/NuGet/NuGet.Config"
Expand Down Expand Up @@ -63,18 +63,18 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.404/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.405/RuntimeIdentifierGraph.json"
}
}
},
"/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj": {
"/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj",
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj",
"projectName": "clicSANDMac.Gtk",
"projectPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj",
"projectPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj",
"packagesPath": "/Users/alexanderkell/.nuget/packages/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/obj/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/alexanderkell/.config/NuGet/NuGet.Config"
Expand All @@ -89,8 +89,8 @@
"net48": {
"targetAlias": "net48",
"projectReferences": {
"/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj": {
"projectPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj"
"/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj": {
"projectPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj"
}
}
}
Expand All @@ -110,7 +110,7 @@
"version": "[2.5.11, )"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.404/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.405/RuntimeIdentifierGraph.json"
}
}
}
Expand Down
12 changes: 6 additions & 6 deletions clicSANDMac.Gtk/obj/project.assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -617,11 +617,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj",
"projectUniqueName": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj",
"projectName": "clicSANDMac.Gtk",
"projectPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj",
"projectPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/clicSANDMac.Gtk.csproj",
"packagesPath": "/Users/alexanderkell/.nuget/packages/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDMac.Gtk/obj/",
"outputPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDMac.Gtk/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/alexanderkell/.config/NuGet/NuGet.Config"
Expand All @@ -636,8 +636,8 @@
"net48": {
"targetAlias": "net48",
"projectReferences": {
"/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj": {
"projectPath": "/Users/alexanderkell/GitHub/SGI/1-cliSANDMac/clicSANDLib/clicSANDLib.csproj"
"/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj": {
"projectPath": "/Users/alexanderkell/GitHub/SGI/5-clicSANDMac/clicSANDLib/clicSANDLib.csproj"
}
}
}
Expand All @@ -657,7 +657,7 @@
"version": "[2.5.11, )"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.404/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.405/RuntimeIdentifierGraph.json"
}
}
}
Expand Down
Loading

0 comments on commit 3dd009d

Please sign in to comment.