diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..cd68b395
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+################################################################################
+# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
+################################################################################
+
+/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/.vs
+/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/bin/Debug/net7.0
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel.sln b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel.sln
index eb71def5..56471cfa 100644
--- a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel.sln
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel.sln
@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.31729.503
+# Visual Studio Version 17
+VisualStudioVersion = 17.8.34112.27
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Read and Edit Excel", "Read and Edit Excel\Read and Edit Excel.csproj", "{AAEDFC24-300B-4516-AAC0-2F12FD288805}"
EndProject
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/Program.cs b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/Program.cs
index cdca361f..cbca4f05 100644
--- a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/Program.cs
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/Program.cs
@@ -1,53 +1,53 @@
-using Syncfusion.XlsIO;
-using System.IO;
+using System.IO;
+using Syncfusion.XlsIO;
namespace Read_and_Edit_Excel
{
- class Program
+ internal class Program
{
- static void Main(string[] args)
+ private static void Main(string[] args)
{
- //Creates a new instance for ExcelEngine
- ExcelEngine excelEngine = new ExcelEngine();
-
- #region Open
- //Loads or open an existing workbook through Open method of IWorkbook
- FileStream inputStream = new FileStream("../../../InputTemplate.xlsx", FileMode.Open, FileAccess.Read);
- IWorkbook workbook = excelEngine.Excel.Workbooks.Open(inputStream);
- #endregion
-
- //Set the version of the workbook
- workbook.Version = ExcelVersion.Xlsx;
-
- #region Edit
- //Set a value in Excel cell
- workbook.Worksheets[0].Range["A2"].Value = "Hello World";
- #endregion
-
- #region Save
- //Saving the workbook
- FileStream outputStream = new FileStream("ReadandEditExcel.xlsx", FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
- #endregion
-
- #region Close
- //Close the instance of IWorkbook
- workbook.Close();
- #endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
-
- //Dispose the instance of ExcelEngine
- excelEngine.Dispose();
-
- System.Diagnostics.Process process = new System.Diagnostics.Process();
- process.StartInfo = new System.Diagnostics.ProcessStartInfo("ReadandEditExcel.xlsx")
+ //Creates a new instance for ExcelEngine, and will Close on exiting using block
+ using (var excelEngine = new ExcelEngine())
+ {
+ IWorkbook workbook; // N.B. IWorkbook is not IDisposable so can't wrap in using, hence explicit Close below
+
+ #region Open
+ // open an existing workbook through Open method of IWorkbooks, needs explicit ExcelVersion if writing (see below)
+ // N.B. input .xlsx file was copied to output folder at build time
+ using (var inputStream = new FileStream("InputTemplate.xlsx", FileMode.Open, FileAccess.Read))
+ {
+ workbook = excelEngine.Excel.Workbooks.Open(inputStream, ExcelVersion.Xlsx);
+ }
+ #endregion
+
+ #region Edit
+ //Set a value in Excel cell
+ workbook.Worksheets[0].Range["A2"].Value = "Hello World";
+ #endregion
+
+ #region Save
+ //Saving the workbook
+ using (var outputStream = new FileStream("ReadandEditExcel.xlsx", FileMode.Create, FileAccess.Write))
+ {
+ workbook.SaveAs(outputStream);
+ }
+ #endregion
+
+ #region Close
+ //Close the instance of IWorkbook
+ workbook.Close();
+ #endregion
+
+ }
+ var process = new System.Diagnostics.Process
{
- UseShellExecute = true
+ StartInfo = new System.Diagnostics.ProcessStartInfo("ReadandEditExcel.xlsx")
+ {
+ UseShellExecute = true
+ }
};
- process.Start();
+ _ = process.Start();
}
}
}
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/Read and Edit Excel.csproj b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/Read and Edit Excel.csproj
index 3b549e95..b4946b6c 100644
--- a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/Read and Edit Excel.csproj
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/Read and Edit Excel.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp3.1
+ net7.0
Read and Edit Excel
@@ -10,4 +10,10 @@
+
+
+ PreserveNewest
+
+
+
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..4257f4bc
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.AssemblyInfo.cs b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.AssemblyInfo.cs
new file mode 100644
index 00000000..cf7df482
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Read and Edit Excel")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+04d2d63b49d2d412baf93a667c7aa70cb605226e")]
+[assembly: System.Reflection.AssemblyProductAttribute("Read and Edit Excel")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Read and Edit Excel")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.AssemblyInfoInputs.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..0b7ba380
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+01a17efc6d80784250f1e7b6ed913cd73ccf40bf60ef89157f35f379fa4a1c4c
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.GeneratedMSBuildEditorConfig.editorconfig b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..202fb59a
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+is_global = true
+build_property.TargetFramework = net7.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Read and Edit Excel
+build_property.ProjectDir = F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.assets.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.assets.cache
new file mode 100644
index 00000000..0a6b210c
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.assets.cache differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.AssemblyReference.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.AssemblyReference.cache
new file mode 100644
index 00000000..c7f8b8d2
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.AssemblyReference.cache differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.BuildWithSkipAnalyzers b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 00000000..e69de29b
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.CopyComplete b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.CopyComplete
new file mode 100644
index 00000000..e69de29b
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.CoreCompileInputs.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..cdb9e26f
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+98aa11b67bcfd34995a437fc202f0dbc50f5cca9d1dbfc20398ccea4e34d694a
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.FileListAbsolute.txt b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..bad13505
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.csproj.FileListAbsolute.txt
@@ -0,0 +1,21 @@
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\Read and Edit Excel.exe
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\Read and Edit Excel.deps.json
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\Read and Edit Excel.runtimeconfig.json
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\Read and Edit Excel.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\Read and Edit Excel.pdb
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\Syncfusion.Compression.NET.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\Syncfusion.Licensing.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\Syncfusion.XlsIO.NET.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.csproj.AssemblyReference.cache
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.GeneratedMSBuildEditorConfig.editorconfig
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.AssemblyInfoInputs.cache
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.AssemblyInfo.cs
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.csproj.CoreCompileInputs.cache
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.sourcelink.json
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.csproj.CopyComplete
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\refint\Read and Edit Excel.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.pdb
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\Read and Edit Excel.genruntimeconfig.cache
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\net7.0\ref\Read and Edit Excel.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\net7.0\InputTemplate.xlsx
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.dll b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.dll
new file mode 100644
index 00000000..bb60c408
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.dll differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.genruntimeconfig.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.genruntimeconfig.cache
new file mode 100644
index 00000000..0f954425
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.genruntimeconfig.cache
@@ -0,0 +1 @@
+9075898ca2572db1466fe13e4df7d140b6febdf4e7bc1066daa069733171f956
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.pdb b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.pdb
new file mode 100644
index 00000000..76c9e98b
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.pdb differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.sourcelink.json b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.sourcelink.json
new file mode 100644
index 00000000..518b85c5
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/Read and Edit Excel.sourcelink.json
@@ -0,0 +1 @@
+{"documents":{"F:\\Dev\\XlsIO-Examples\\*":"https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/04d2d63b49d2d412baf93a667c7aa70cb605226e/*"}}
\ No newline at end of file
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/apphost.exe b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/apphost.exe
new file mode 100644
index 00000000..b48b9bf3
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/apphost.exe differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/ref/Read and Edit Excel.dll b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/ref/Read and Edit Excel.dll
new file mode 100644
index 00000000..541f2334
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/ref/Read and Edit Excel.dll differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/refint/Read and Edit Excel.dll b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/refint/Read and Edit Excel.dll
new file mode 100644
index 00000000..541f2334
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/net7.0/refint/Read and Edit Excel.dll differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
new file mode 100644
index 00000000..1b9b2f8b
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = ".NET Core 3.1")]
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.AssemblyInfo.cs b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.AssemblyInfo.cs
new file mode 100644
index 00000000..04fbd679
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Read and Edit Excel")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Read and Edit Excel")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Read and Edit Excel")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.AssemblyInfoInputs.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..4bdec4d8
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+79760a412950e8e15fc5eb47bb67d7def5b190f1ec91dbe36046fdad4cc143ee
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.GeneratedMSBuildEditorConfig.editorconfig b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..c961c59a
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,5 @@
+is_global = true
+build_property.RootNamespace = Read and Edit Excel
+build_property.ProjectDir = F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.assets.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.assets.cache
new file mode 100644
index 00000000..30a72fa8
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.assets.cache differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.AssemblyReference.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.AssemblyReference.cache
new file mode 100644
index 00000000..33844703
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.AssemblyReference.cache differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.BuildWithSkipAnalyzers b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 00000000..e69de29b
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.CopyComplete b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.CopyComplete
new file mode 100644
index 00000000..e69de29b
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.CoreCompileInputs.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..41088815
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+3ee812e8b3d69d4717ed9040fa265ec591f61d32609880662935fcd59299c627
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.FileListAbsolute.txt b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..e2c9fa28
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.csproj.FileListAbsolute.txt
@@ -0,0 +1,19 @@
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Read and Edit Excel.exe
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Read and Edit Excel.deps.json
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Read and Edit Excel.runtimeconfig.json
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Read and Edit Excel.runtimeconfig.dev.json
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Read and Edit Excel.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Read and Edit Excel.pdb
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Syncfusion.Compression.NET.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Syncfusion.Licensing.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\bin\Debug\netcoreapp3.1\Syncfusion.XlsIO.NET.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.csproj.AssemblyReference.cache
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.GeneratedMSBuildEditorConfig.editorconfig
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.AssemblyInfoInputs.cache
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.AssemblyInfo.cs
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.csproj.CoreCompileInputs.cache
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.sourcelink.json
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.csproj.CopyComplete
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.dll
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.pdb
+F:\Dev\XlsIO-Examples\Read and Edit Excel\Read and Edit Excel\NET Standard\Read and Edit Excel\Read and Edit Excel\obj\Debug\netcoreapp3.1\Read and Edit Excel.genruntimeconfig.cache
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.dll b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.dll
new file mode 100644
index 00000000..4ff12873
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.dll differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.genruntimeconfig.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.genruntimeconfig.cache
new file mode 100644
index 00000000..5d72f760
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.genruntimeconfig.cache
@@ -0,0 +1 @@
+6741747c361a5b9998087b18d4592b1efcae345195a721d434336ba0df2bccac
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.pdb b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.pdb
new file mode 100644
index 00000000..8a82a865
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.pdb differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.sourcelink.json b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.sourcelink.json
new file mode 100644
index 00000000..518b85c5
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/Read and Edit Excel.sourcelink.json
@@ -0,0 +1 @@
+{"documents":{"F:\\Dev\\XlsIO-Examples\\*":"https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/04d2d63b49d2d412baf93a667c7aa70cb605226e/*"}}
\ No newline at end of file
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/apphost.exe b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/apphost.exe
new file mode 100644
index 00000000..8a725366
Binary files /dev/null and b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Debug/netcoreapp3.1/apphost.exe differ
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.dgspec.json b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..c639d8cb
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.dgspec.json
@@ -0,0 +1,78 @@
+{
+ "format": 1,
+ "restore": {
+ "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\Read and Edit Excel.csproj": {}
+ },
+ "projects": {
+ "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\Read and Edit Excel.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\Read and Edit Excel.csproj",
+ "projectName": "Read and Edit Excel",
+ "projectPath": "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\Read and Edit Excel.csproj",
+ "packagesPath": "C:\\Users\\DickB\\.nuget\\packages\\",
+ "outputPath": "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
+ "C:\\Program Files (x86)\\Syncfusion\\Essential Studio\\WPF\\22.1.34\\ToolboxNuGetPackages",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\DickB\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Syncfusion Toolbox for WPF.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files (x86)\\Syncfusion\\Essential Studio\\WinUI\\22.1.34\\NuGetPackages": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "dependencies": {
+ "Syncfusion.XlsIO.NET": {
+ "target": "Package",
+ "version": "[19.4.0.38, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100-rc.1.23455.8\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.g.props b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.g.props
new file mode 100644
index 00000000..652eacec
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.g.props
@@ -0,0 +1,18 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\DickB\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Syncfusion\Essential Studio\WPF\22.1.34\ToolboxNuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 6.8.0
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.g.targets b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.g.targets
new file mode 100644
index 00000000..b57c30ab
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/Read and Edit Excel.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/project.assets.json b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/project.assets.json
new file mode 100644
index 00000000..554f3ef3
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/project.assets.json
@@ -0,0 +1,364 @@
+{
+ "version": 3,
+ "targets": {
+ "net7.0": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "NETStandard.Library/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "build": {
+ "build/netstandard2.0/NETStandard.Library.targets": {}
+ }
+ },
+ "Syncfusion.Compression.NET/19.4.0.38": {
+ "type": "package",
+ "dependencies": {
+ "NETStandard.Library": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Syncfusion.Compression.NET.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Syncfusion.Compression.NET.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Syncfusion.Licensing/19.4.0.38": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Syncfusion.Licensing.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Syncfusion.Licensing.dll": {}
+ }
+ },
+ "Syncfusion.XlsIO.NET/19.4.0.38": {
+ "type": "package",
+ "dependencies": {
+ "NETStandard.Library": "2.0.0",
+ "Syncfusion.Compression.NET": "19.4.0.38",
+ "Syncfusion.Licensing": "19.4.0.38"
+ },
+ "compile": {
+ "lib/netstandard2.0/Syncfusion.XlsIO.NET.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Syncfusion.XlsIO.NET.dll": {
+ "related": ".xml"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "Exiuy55pB7W+lLo2mvOE2wh5RRh00ZDCYsZpNqVyTn/f890mC8RoREly1sUG8Xm9MR4em8HCyEJ0igwpvwbUwA==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "NETStandard.Library/2.0.0": {
+ "sha512": "sn4JwjEN5iNfqc0bd0Qje5oBZBB9wyuNn4GkQvEzfKVnZ3QH0HHoN9exxydlJGptiCMVdAZu7At9TNj0r8Z0yg==",
+ "type": "package",
+ "path": "netstandard.library/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/NETStandard.Library.targets",
+ "build/netstandard2.0/NETStandard.Library.targets",
+ "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
+ "build/netstandard2.0/ref/System.AppContext.dll",
+ "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
+ "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
+ "build/netstandard2.0/ref/System.Collections.Specialized.dll",
+ "build/netstandard2.0/ref/System.Collections.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.dll",
+ "build/netstandard2.0/ref/System.Console.dll",
+ "build/netstandard2.0/ref/System.Core.dll",
+ "build/netstandard2.0/ref/System.Data.Common.dll",
+ "build/netstandard2.0/ref/System.Data.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
+ "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
+ "build/netstandard2.0/ref/System.Drawing.dll",
+ "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
+ "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
+ "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
+ "build/netstandard2.0/ref/System.Globalization.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
+ "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
+ "build/netstandard2.0/ref/System.IO.Pipes.dll",
+ "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
+ "build/netstandard2.0/ref/System.IO.dll",
+ "build/netstandard2.0/ref/System.Linq.Expressions.dll",
+ "build/netstandard2.0/ref/System.Linq.Parallel.dll",
+ "build/netstandard2.0/ref/System.Linq.Queryable.dll",
+ "build/netstandard2.0/ref/System.Linq.dll",
+ "build/netstandard2.0/ref/System.Net.Http.dll",
+ "build/netstandard2.0/ref/System.Net.NameResolution.dll",
+ "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
+ "build/netstandard2.0/ref/System.Net.Ping.dll",
+ "build/netstandard2.0/ref/System.Net.Primitives.dll",
+ "build/netstandard2.0/ref/System.Net.Requests.dll",
+ "build/netstandard2.0/ref/System.Net.Security.dll",
+ "build/netstandard2.0/ref/System.Net.Sockets.dll",
+ "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.dll",
+ "build/netstandard2.0/ref/System.Net.dll",
+ "build/netstandard2.0/ref/System.Numerics.dll",
+ "build/netstandard2.0/ref/System.ObjectModel.dll",
+ "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
+ "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
+ "build/netstandard2.0/ref/System.Reflection.dll",
+ "build/netstandard2.0/ref/System.Resources.Reader.dll",
+ "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
+ "build/netstandard2.0/ref/System.Resources.Writer.dll",
+ "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
+ "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
+ "build/netstandard2.0/ref/System.Runtime.Handles.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
+ "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
+ "build/netstandard2.0/ref/System.Runtime.dll",
+ "build/netstandard2.0/ref/System.Security.Claims.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
+ "build/netstandard2.0/ref/System.Security.Principal.dll",
+ "build/netstandard2.0/ref/System.Security.SecureString.dll",
+ "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.dll",
+ "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
+ "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.dll",
+ "build/netstandard2.0/ref/System.Threading.Thread.dll",
+ "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
+ "build/netstandard2.0/ref/System.Threading.Timer.dll",
+ "build/netstandard2.0/ref/System.Threading.dll",
+ "build/netstandard2.0/ref/System.Transactions.dll",
+ "build/netstandard2.0/ref/System.ValueTuple.dll",
+ "build/netstandard2.0/ref/System.Web.dll",
+ "build/netstandard2.0/ref/System.Windows.dll",
+ "build/netstandard2.0/ref/System.Xml.Linq.dll",
+ "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
+ "build/netstandard2.0/ref/System.Xml.Serialization.dll",
+ "build/netstandard2.0/ref/System.Xml.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
+ "build/netstandard2.0/ref/System.Xml.dll",
+ "build/netstandard2.0/ref/System.dll",
+ "build/netstandard2.0/ref/mscorlib.dll",
+ "build/netstandard2.0/ref/netstandard.dll",
+ "build/netstandard2.0/ref/netstandard.xml",
+ "lib/netstandard1.0/_._",
+ "netstandard.library.2.0.0.nupkg.sha512",
+ "netstandard.library.nuspec"
+ ]
+ },
+ "Syncfusion.Compression.NET/19.4.0.38": {
+ "sha512": "h6S+hojevKknBiW14xWGYxdpTy+SfBf0+5jOfM6A68GfuWvI4xH6SqXeJWHLkeR1m2X3MTvtGl5ckuPXn7GYKg==",
+ "type": "package",
+ "path": "syncfusion.compression.net/19.4.0.38",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/netstandard2.0/Syncfusion.Compression.NET.dll",
+ "lib/netstandard2.0/Syncfusion.Compression.NET.xml",
+ "syncfusion.compression.net.19.4.0.38.nupkg.sha512",
+ "syncfusion.compression.net.nuspec",
+ "syncfusion_logo.png"
+ ]
+ },
+ "Syncfusion.Licensing/19.4.0.38": {
+ "sha512": "aO2/KBA53/uYDAs0cj0HYW+Hf3cYnyZUpo96IaijDoVvS+Vi9N7tEUVvnAbW84aQiJFZD5LOUxoEz18Dw74iAw==",
+ "type": "package",
+ "path": "syncfusion.licensing/19.4.0.38",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/MonoAndroid10.0/Syncfusion.Licensing.dll",
+ "lib/MonoAndroid90/Syncfusion.Licensing.dll",
+ "lib/Xamarin.Mac/Syncfusion.Licensing.dll",
+ "lib/Xamarin.iOS10/Syncfusion.Licensing.dll",
+ "lib/net20/Syncfusion.Licensing.dll",
+ "lib/net35/Syncfusion.Licensing.dll",
+ "lib/net40/Syncfusion.Licensing.dll",
+ "lib/net45/Syncfusion.Licensing.dll",
+ "lib/net451/Syncfusion.Licensing.dll",
+ "lib/net46/Syncfusion.Licensing.dll",
+ "lib/net5.0-windows10.0/Syncfusion.Licensing.dll",
+ "lib/net5.0/Syncfusion.Licensing.dll",
+ "lib/netcoreapp3.1/Syncfusion.Licensing.dll",
+ "lib/netstandard1.0/Syncfusion.Licensing.dll",
+ "lib/netstandard1.2/Syncfusion.Licensing.dll",
+ "lib/netstandard1.4/Syncfusion.Licensing.dll",
+ "lib/netstandard2.0/Syncfusion.Licensing.dll",
+ "lib/portable-win+net45+wp80+win81+wpa81/Syncfusion.Licensing.dll",
+ "lib/uap10.0/Syncfusion.Licensing.dll",
+ "syncfusion.licensing.19.4.0.38.nupkg.sha512",
+ "syncfusion.licensing.nuspec",
+ "syncfusion_logo.png"
+ ]
+ },
+ "Syncfusion.XlsIO.NET/19.4.0.38": {
+ "sha512": "b+2Ov6/ewS931249vQl+Qw6ThgslR1qcT1urpHykomJDfNOByepGziqW/YZ8J7WdtCALe2pUdccxztIMMkyEFw==",
+ "type": "package",
+ "path": "syncfusion.xlsio.net/19.4.0.38",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "README.md",
+ "lib/netstandard2.0/Syncfusion.XlsIO.NET.dll",
+ "lib/netstandard2.0/Syncfusion.XlsIO.NET.xml",
+ "syncfusion.xlsio.net.19.4.0.38.nupkg.sha512",
+ "syncfusion.xlsio.net.nuspec",
+ "syncfusion_logo.png"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net7.0": [
+ "Syncfusion.XlsIO.NET >= 19.4.0.38"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\DickB\\.nuget\\packages\\": {},
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
+ "C:\\Program Files (x86)\\Syncfusion\\Essential Studio\\WPF\\22.1.34\\ToolboxNuGetPackages": {},
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\Read and Edit Excel.csproj",
+ "projectName": "Read and Edit Excel",
+ "projectPath": "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\Read and Edit Excel.csproj",
+ "packagesPath": "C:\\Users\\DickB\\.nuget\\packages\\",
+ "outputPath": "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
+ "C:\\Program Files (x86)\\Syncfusion\\Essential Studio\\WPF\\22.1.34\\ToolboxNuGetPackages",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\DickB\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Syncfusion Toolbox for WPF.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files (x86)\\Syncfusion\\Essential Studio\\WinUI\\22.1.34\\NuGetPackages": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "dependencies": {
+ "Syncfusion.XlsIO.NET": {
+ "target": "Package",
+ "version": "[19.4.0.38, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100-rc.1.23455.8\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/project.nuget.cache b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/project.nuget.cache
new file mode 100644
index 00000000..2dbdc9a3
--- /dev/null
+++ b/Read and Edit Excel/Read and Edit Excel/NET Standard/Read and Edit Excel/Read and Edit Excel/obj/project.nuget.cache
@@ -0,0 +1,14 @@
+{
+ "version": 2,
+ "dgSpecHash": "6c9WFGX7c5CMjOrp2DdzEBHkdk2n9lpmOVXh6BehfvBUaZqURkhOBvZwU+aSiqtxpzv0SuIfZ5sur+rv89AOTA==",
+ "success": true,
+ "projectFilePath": "F:\\Dev\\XlsIO-Examples\\Read and Edit Excel\\Read and Edit Excel\\NET Standard\\Read and Edit Excel\\Read and Edit Excel\\Read and Edit Excel.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\DickB\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "C:\\Users\\DickB\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512",
+ "C:\\Users\\DickB\\.nuget\\packages\\syncfusion.compression.net\\19.4.0.38\\syncfusion.compression.net.19.4.0.38.nupkg.sha512",
+ "C:\\Users\\DickB\\.nuget\\packages\\syncfusion.licensing\\19.4.0.38\\syncfusion.licensing.19.4.0.38.nupkg.sha512",
+ "C:\\Users\\DickB\\.nuget\\packages\\syncfusion.xlsio.net\\19.4.0.38\\syncfusion.xlsio.net.19.4.0.38.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file