diff --git a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type.slnx b/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type.slnx
deleted file mode 100644
index ba4475b4..00000000
--- a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type.slnx
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Boolean Data Type.csproj b/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Boolean Data Type.csproj
deleted file mode 100644
index ad012f86..00000000
--- a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Boolean Data Type.csproj
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
- Exe
- net10.0
- Boolean_Data_Type
- enable
- enable
-
-
-
-
-
-
-
-
-
- Always
-
-
- Always
-
-
-
-
diff --git a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Data/InputTemplate.xlsx
deleted file mode 100644
index 0d9a064d..00000000
Binary files a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Data/InputTemplate.xlsx and /dev/null differ
diff --git a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Output/.gitkeep b/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Output/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Program.cs b/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Program.cs
deleted file mode 100644
index a3f06131..00000000
--- a/Performance Metrics/Excel to PDF/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Program.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using Syncfusion.XlsIO;
-using Syncfusion.XlsIORenderer;
-using Syncfusion.Pdf;
-using System.IO;
-
-namespace Boolean_Data_Type
-{
- class Program
- {
- static void Main(string[] args)
- {
- using (ExcelEngine excelEngine = new ExcelEngine())
- {
- IApplication application = excelEngine.Excel;
- application.DefaultVersion = ExcelVersion.Xlsx;
-
- //Load existing Excel file
- IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
-
- //Convert to PDF
- XlsIORenderer renderer = new XlsIORenderer();
- PdfDocument pdfDocument = renderer.ConvertToPDF(workbook);
-
- #region Save
- //Saving the workbook
- pdfDocument.Save(Path.GetFullPath(@"Output/Sample.pdf"));
- #endregion
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type.slnx b/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type.slnx
deleted file mode 100644
index e82b5fe6..00000000
--- a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type.slnx
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Data/InputTemplate.xlsx
deleted file mode 100644
index 4a75cfb6..00000000
Binary files a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Data/InputTemplate.xlsx and /dev/null differ
diff --git a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/DateTime Data Type.csproj b/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/DateTime Data Type.csproj
deleted file mode 100644
index d2f6aa20..00000000
--- a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/DateTime Data Type.csproj
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- Exe
- net10.0
- DateTime_Data_Type
- enable
- enable
-
-
-
-
-
-
-
-
- Always
-
-
- Always
-
-
-
-
diff --git a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Output/.gitkeep b/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Output/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Program.cs b/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Program.cs
deleted file mode 100644
index 1f440131..00000000
--- a/Performance Metrics/Excel to PDF/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Program.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using Syncfusion.XlsIO;
-using Syncfusion.XlsIORenderer;
-using Syncfusion.Pdf;
-using System.IO;
-
-namespace DateTime_Data_Type
-{
- class Program
- {
- static void Main(string[] args)
- {
- using (ExcelEngine excelEngine = new ExcelEngine())
- {
- IApplication application = excelEngine.Excel;
- application.DefaultVersion = ExcelVersion.Xlsx;
-
- //Load existing Excel file
- IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
-
- //Convert to PDF
- XlsIORenderer renderer = new XlsIORenderer();
- PdfDocument pdfDocument = renderer.ConvertToPDF(workbook);
-
- #region Save
- //Saving the workbook
- pdfDocument.Save(Path.GetFullPath(@"Output/Sample.pdf"));
- #endregion
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type.slnx b/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type.slnx
deleted file mode 100644
index 95aee489..00000000
--- a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type.slnx
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Data/InputTemplate.xlsx
deleted file mode 100644
index eb5f7490..00000000
Binary files a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Data/InputTemplate.xlsx and /dev/null differ
diff --git a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Formula Data Type.csproj b/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Formula Data Type.csproj
deleted file mode 100644
index 2137ba28..00000000
--- a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Formula Data Type.csproj
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- Exe
- net10.0
- Formula_Data_Type
- enable
- enable
-
-
-
-
-
-
-
-
- Always
-
-
- Always
-
-
-
-
diff --git a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Output/.gitkeep b/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Output/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Program.cs b/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Program.cs
deleted file mode 100644
index b104cd2d..00000000
--- a/Performance Metrics/Excel to PDF/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Program.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using Syncfusion.XlsIO;
-using Syncfusion.XlsIORenderer;
-using Syncfusion.Pdf;
-using System.IO;
-
-namespace Formula_Data_Type
-{
- class Program
- {
- static void Main(string[] args)
- {
- using (ExcelEngine excelEngine = new ExcelEngine())
- {
- IApplication application = excelEngine.Excel;
- application.DefaultVersion = ExcelVersion.Xlsx;
-
- //Load existing Excel file
- IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
-
- //Convert to PDF
- XlsIORenderer renderer = new XlsIORenderer();
- PdfDocument pdfDocument = renderer.ConvertToPDF(workbook);
-
- #region Save
- //Saving the workbook
- pdfDocument.Save(Path.GetFullPath(@"Output/Sample.pdf"));
- #endregion
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type.slnx b/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type.slnx
deleted file mode 100644
index 9ebb9640..00000000
--- a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type.slnx
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Data/InputTemplate.xlsx
deleted file mode 100644
index c8336c55..00000000
Binary files a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Data/InputTemplate.xlsx and /dev/null differ
diff --git a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Number Data Type.csproj b/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Number Data Type.csproj
deleted file mode 100644
index 768854af..00000000
--- a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Number Data Type.csproj
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- Exe
- net10.0
- Number_Data_Type
- enable
- enable
-
-
-
-
-
-
-
-
- Always
-
-
- Always
-
-
-
-
diff --git a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Output/.gitkeep b/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Output/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Program.cs b/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Program.cs
deleted file mode 100644
index 9f37782b..00000000
--- a/Performance Metrics/Excel to PDF/Number Data Type/.NET/Number Data Type/Number Data Type/Program.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using Syncfusion.XlsIO;
-using Syncfusion.XlsIORenderer;
-using Syncfusion.Pdf;
-using System.IO;
-
-namespace Number_Data_Type
-{
- class Program
- {
- static void Main(string[] args)
- {
- using (ExcelEngine excelEngine = new ExcelEngine())
- {
- IApplication application = excelEngine.Excel;
- application.DefaultVersion = ExcelVersion.Xlsx;
-
- //Load existing Excel file
- IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
-
- //Convert to PDF
- XlsIORenderer renderer = new XlsIORenderer();
- PdfDocument pdfDocument = renderer.ConvertToPDF(workbook);
-
- #region Save
- //Saving the workbook
- pdfDocument.Save(Path.GetFullPath(@"Output/Sample.pdf"));
- #endregion
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type.slnx b/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type.slnx
deleted file mode 100644
index 9d40052d..00000000
--- a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type.slnx
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/Data/InputTemplate.xlsx
deleted file mode 100644
index 3069bbac..00000000
Binary files a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/Data/InputTemplate.xlsx and /dev/null differ
diff --git a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/Output/.gitkeep b/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/Output/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/Program.cs b/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/Program.cs
deleted file mode 100644
index fc7f1eef..00000000
--- a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/Program.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using Syncfusion.XlsIO;
-using Syncfusion.XlsIORenderer;
-using Syncfusion.Pdf;
-using System.IO;
-
-namespace String_Data_Type
-{
- class Program
- {
- static void Main(string[] args)
- {
- using (ExcelEngine excelEngine = new ExcelEngine())
- {
- IApplication application = excelEngine.Excel;
- application.DefaultVersion = ExcelVersion.Xlsx;
-
- //Load existing Excel file
- IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
-
- //Convert to PDF
- XlsIORenderer renderer = new XlsIORenderer();
- PdfDocument pdfDocument = renderer.ConvertToPDF(workbook);
-
- #region Save
- //Saving the workbook
- pdfDocument.Save(Path.GetFullPath(@"Output/Sample.pdf"));
- #endregion
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/String Data Type.csproj b/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/String Data Type.csproj
deleted file mode 100644
index f1adfad2..00000000
--- a/Performance Metrics/Excel to PDF/String Data Type/.NET/String Data Type/String Data Type/String Data Type.csproj
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- Exe
- net10.0
- String_Data_Type
- enable
- enable
-
-
-
-
-
-
-
-
- Always
-
-
- Always
-
-
-
-