diff --git a/CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/CSV to Excel.csproj b/CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/CSV to Excel.csproj index 4e782b36..4147bace 100644 --- a/CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/CSV to Excel.csproj +++ b/CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/CSV to Excel.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/Program.cs b/CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/Program.cs index a639d194..e560faa6 100644 --- a/CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/Program.cs +++ b/CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/Program.cs @@ -17,7 +17,7 @@ public static void Main(string[] args) IWorksheet worksheet = workbook.Worksheets[0]; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -27,3 +27,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Chart to Image/Chart to Image/.NET/Chart to Image/Chart to Image/Chart to Image.csproj b/Chart to Image/Chart to Image/.NET/Chart to Image/Chart to Image/Chart to Image.csproj index 389fac9f..710d38cb 100644 --- a/Chart to Image/Chart to Image/.NET/Chart to Image/Chart to Image/Chart to Image.csproj +++ b/Chart to Image/Chart to Image/.NET/Chart to Image/Chart to Image/Chart to Image.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Chart to Image/Chart to Image/.NET/Chart to Image/Chart to Image/Program.cs b/Chart to Image/Chart to Image/.NET/Chart to Image/Chart to Image/Program.cs index 69d07916..2071e9bf 100644 --- a/Chart to Image/Chart to Image/.NET/Chart to Image/Chart to Image/Program.cs +++ b/Chart to Image/Chart to Image/.NET/Chart to Image/Chart to Image/Program.cs @@ -27,7 +27,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Image.png", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Image.png"), FileMode.Create, FileAccess.Write); chart.SaveAsImage(outputStream); #endregion @@ -39,3 +39,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Above and Below Average/.NET/Above and Below Average/Above and Below Average/Above and Below Average.csproj b/Conditional Formatting/Above and Below Average/.NET/Above and Below Average/Above and Below Average/Above and Below Average.csproj index 7a7cd967..70d8a504 100644 --- a/Conditional Formatting/Above and Below Average/.NET/Above and Below Average/Above and Below Average/Above and Below Average.csproj +++ b/Conditional Formatting/Above and Below Average/.NET/Above and Below Average/Above and Below Average/Above and Below Average.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Above and Below Average/.NET/Above and Below Average/Above and Below Average/Program.cs b/Conditional Formatting/Above and Below Average/.NET/Above and Below Average/Above and Below Average/Program.cs index 35adb626..99a62ff0 100644 --- a/Conditional Formatting/Above and Below Average/.NET/Above and Below Average/Above and Below Average/Program.cs +++ b/Conditional Formatting/Above and Below Average/.NET/Above and Below Average/Above and Below Average/Program.cs @@ -32,7 +32,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AboveAndBelowAverage.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AboveAndBelowAverage.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -44,3 +44,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Above and Below Standard Deviation/.NET/Above and Below Standard Deviation/Above and Below Standard Deviation/Above and Below Standard Deviation.csproj b/Conditional Formatting/Above and Below Standard Deviation/.NET/Above and Below Standard Deviation/Above and Below Standard Deviation/Above and Below Standard Deviation.csproj index e61ea594..b2a1ce56 100644 --- a/Conditional Formatting/Above and Below Standard Deviation/.NET/Above and Below Standard Deviation/Above and Below Standard Deviation/Above and Below Standard Deviation.csproj +++ b/Conditional Formatting/Above and Below Standard Deviation/.NET/Above and Below Standard Deviation/Above and Below Standard Deviation/Above and Below Standard Deviation.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Above and Below Standard Deviation/.NET/Above and Below Standard Deviation/Above and Below Standard Deviation/Program.cs b/Conditional Formatting/Above and Below Standard Deviation/.NET/Above and Below Standard Deviation/Above and Below Standard Deviation/Program.cs index dbeb0525..24dc2899 100644 --- a/Conditional Formatting/Above and Below Standard Deviation/.NET/Above and Below Standard Deviation/Above and Below Standard Deviation/Program.cs +++ b/Conditional Formatting/Above and Below Standard Deviation/.NET/Above and Below Standard Deviation/Above and Below Standard Deviation/Program.cs @@ -35,7 +35,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AboveAndBelowStandardDeviation.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AboveAndBelowStandardDeviation.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -47,3 +47,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Advanced Conditional Formats/.NET/Advanced Conditional Formats/Advanced Conditional Formats/Advanced Conditional Formats.csproj b/Conditional Formatting/Advanced Conditional Formats/.NET/Advanced Conditional Formats/Advanced Conditional Formats/Advanced Conditional Formats.csproj index 41ad9ee5..22b46660 100644 --- a/Conditional Formatting/Advanced Conditional Formats/.NET/Advanced Conditional Formats/Advanced Conditional Formats/Advanced Conditional Formats.csproj +++ b/Conditional Formatting/Advanced Conditional Formats/.NET/Advanced Conditional Formats/Advanced Conditional Formats/Advanced Conditional Formats.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Advanced Conditional Formats/.NET/Advanced Conditional Formats/Advanced Conditional Formats/Program.cs b/Conditional Formatting/Advanced Conditional Formats/.NET/Advanced Conditional Formats/Advanced Conditional Formats/Program.cs index a1d44e18..c3fbc992 100644 --- a/Conditional Formatting/Advanced Conditional Formats/.NET/Advanced Conditional Formats/Advanced Conditional Formats/Program.cs +++ b/Conditional Formatting/Advanced Conditional Formats/.NET/Advanced Conditional Formats/Advanced Conditional Formats/Program.cs @@ -72,7 +72,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AdvancedCF.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AdvancedCF.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -84,3 +84,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Color Scales/.NET/Color Scales/Color Scales/Color Scales.csproj b/Conditional Formatting/Color Scales/.NET/Color Scales/Color Scales/Color Scales.csproj index f68728e3..91272df3 100644 --- a/Conditional Formatting/Color Scales/.NET/Color Scales/Color Scales/Color Scales.csproj +++ b/Conditional Formatting/Color Scales/.NET/Color Scales/Color Scales/Color Scales.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Color Scales/.NET/Color Scales/Color Scales/Program.cs b/Conditional Formatting/Color Scales/.NET/Color Scales/Color Scales/Program.cs index 44867c93..5786667d 100644 --- a/Conditional Formatting/Color Scales/.NET/Color Scales/Color Scales/Program.cs +++ b/Conditional Formatting/Color Scales/.NET/Color Scales/Color Scales/Program.cs @@ -41,7 +41,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -53,3 +53,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Conditional Format with R1C1.csproj b/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Conditional Format with R1C1.csproj index 06b58c77..528ce28c 100644 --- a/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Conditional Format with R1C1.csproj +++ b/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Conditional Format with R1C1.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Output/.gitkeep b/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Program.cs b/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Program.cs index d1719994..c7cc8adc 100644 --- a/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Program.cs +++ b/Conditional Formatting/Conditional Format with R1C1/.NET/Conditional Format with R1C1/Conditional Format with R1C1/Program.cs @@ -22,20 +22,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ConditionalFormat.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ConditionalFormat.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ConditionalFormat.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Create Conditional Format.csproj b/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Create Conditional Format.csproj index ef24eb1f..2bafe9ab 100644 --- a/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Create Conditional Format.csproj +++ b/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Create Conditional Format.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Output/.gitkeep b/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Program.cs b/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Program.cs index 810cf523..9ef6bf65 100644 --- a/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Program.cs +++ b/Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/Program.cs @@ -59,20 +59,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ConditionalFormat.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ConditionalFormat.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ConditionalFormat.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Conditional Formatting/Data Bars/.NET/Data Bars/Data Bars/Data Bars.csproj b/Conditional Formatting/Data Bars/.NET/Data Bars/Data Bars/Data Bars.csproj index 110479df..6b68554d 100644 --- a/Conditional Formatting/Data Bars/.NET/Data Bars/Data Bars/Data Bars.csproj +++ b/Conditional Formatting/Data Bars/.NET/Data Bars/Data Bars/Data Bars.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Data Bars/.NET/Data Bars/Data Bars/Program.cs b/Conditional Formatting/Data Bars/.NET/Data Bars/Data Bars/Program.cs index e2773df2..1f2c8f78 100644 --- a/Conditional Formatting/Data Bars/.NET/Data Bars/Data Bars/Program.cs +++ b/Conditional Formatting/Data Bars/.NET/Data Bars/Data Bars/Program.cs @@ -35,7 +35,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -47,3 +47,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Icon Sets/.NET/Icon Sets/Icon Sets/Icon Sets.csproj b/Conditional Formatting/Icon Sets/.NET/Icon Sets/Icon Sets/Icon Sets.csproj index 4cf35e0f..c6a85483 100644 --- a/Conditional Formatting/Icon Sets/.NET/Icon Sets/Icon Sets/Icon Sets.csproj +++ b/Conditional Formatting/Icon Sets/.NET/Icon Sets/Icon Sets/Icon Sets.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Icon Sets/.NET/Icon Sets/Icon Sets/Program.cs b/Conditional Formatting/Icon Sets/.NET/Icon Sets/Icon Sets/Program.cs index 9da3c9d7..f84acdf0 100644 --- a/Conditional Formatting/Icon Sets/.NET/Icon Sets/Icon Sets/Program.cs +++ b/Conditional Formatting/Icon Sets/.NET/Icon Sets/Icon Sets/Program.cs @@ -32,7 +32,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -44,3 +44,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Read Conditional Format/.NET/Read Conditional Format/Read Conditional Format/Program.cs b/Conditional Formatting/Read Conditional Format/.NET/Read Conditional Format/Read Conditional Format/Program.cs index e37c87d6..10f3dba1 100644 --- a/Conditional Formatting/Read Conditional Format/.NET/Read Conditional Format/Read Conditional Format/Program.cs +++ b/Conditional Formatting/Read Conditional Format/.NET/Read Conditional Format/Read Conditional Format/Program.cs @@ -26,3 +26,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Read Conditional Format/.NET/Read Conditional Format/Read Conditional Format/Read Conditional Format.csproj b/Conditional Formatting/Read Conditional Format/.NET/Read Conditional Format/Read Conditional Format/Read Conditional Format.csproj index 6c4b426b..6185fc52 100644 --- a/Conditional Formatting/Read Conditional Format/.NET/Read Conditional Format/Read Conditional Format/Read Conditional Format.csproj +++ b/Conditional Formatting/Read Conditional Format/.NET/Read Conditional Format/Read Conditional Format/Read Conditional Format.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Conditional Formatting/Remove Conditional Format/.NET/Remove Conditional Format/Program.cs b/Conditional Formatting/Remove Conditional Format/.NET/Remove Conditional Format/Program.cs index 2f8aed6e..e2630961 100644 --- a/Conditional Formatting/Remove Conditional Format/.NET/Remove Conditional Format/Program.cs +++ b/Conditional Formatting/Remove Conditional Format/.NET/Remove Conditional Format/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveConditionalFormat.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveConditionalFormat.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Remove Conditional Format/.NET/Remove Conditional Format/Remove Conditional Format.csproj b/Conditional Formatting/Remove Conditional Format/.NET/Remove Conditional Format/Remove Conditional Format.csproj index bc44be00..62c79690 100644 --- a/Conditional Formatting/Remove Conditional Format/.NET/Remove Conditional Format/Remove Conditional Format.csproj +++ b/Conditional Formatting/Remove Conditional Format/.NET/Remove Conditional Format/Remove Conditional Format.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Remove all Conditional Formats/.NET/Remove all Conditional Formats/Remove all Conditional Formats/Program.cs b/Conditional Formatting/Remove all Conditional Formats/.NET/Remove all Conditional Formats/Remove all Conditional Formats/Program.cs index 82f9e302..0b45d357 100644 --- a/Conditional Formatting/Remove all Conditional Formats/.NET/Remove all Conditional Formats/Remove all Conditional Formats/Program.cs +++ b/Conditional Formatting/Remove all Conditional Formats/.NET/Remove all Conditional Formats/Remove all Conditional Formats/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveAll.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveAll.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -32,3 +32,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Remove all Conditional Formats/.NET/Remove all Conditional Formats/Remove all Conditional Formats/Remove all Conditional Formats.csproj b/Conditional Formatting/Remove all Conditional Formats/.NET/Remove all Conditional Formats/Remove all Conditional Formats/Remove all Conditional Formats.csproj index 818be0bd..3be2c205 100644 --- a/Conditional Formatting/Remove all Conditional Formats/.NET/Remove all Conditional Formats/Remove all Conditional Formats/Remove all Conditional Formats.csproj +++ b/Conditional Formatting/Remove all Conditional Formats/.NET/Remove all Conditional Formats/Remove all Conditional Formats/Remove all Conditional Formats.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Remove at Index/.NET/Remove at Index/Remove at Index/Program.cs b/Conditional Formatting/Remove at Index/.NET/Remove at Index/Remove at Index/Program.cs index cbf08a0e..a7b602b6 100644 --- a/Conditional Formatting/Remove at Index/.NET/Remove at Index/Remove at Index/Program.cs +++ b/Conditional Formatting/Remove at Index/.NET/Remove at Index/Remove at Index/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveConditionalFormat.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveConditionalFormat.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -32,3 +32,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Remove at Index/.NET/Remove at Index/Remove at Index/Remove at Index.csproj b/Conditional Formatting/Remove at Index/.NET/Remove at Index/Remove at Index/Remove at Index.csproj index 604866a8..54e97ee2 100644 --- a/Conditional Formatting/Remove at Index/.NET/Remove at Index/Remove at Index/Remove at Index.csproj +++ b/Conditional Formatting/Remove at Index/.NET/Remove at Index/Remove at Index/Remove at Index.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Top To Bottom Percent/.NET/Top To Bottom Percent/Top To Bottom Percent/Program.cs b/Conditional Formatting/Top To Bottom Percent/.NET/Top To Bottom Percent/Top To Bottom Percent/Program.cs index d92e08c0..17686c1a 100644 --- a/Conditional Formatting/Top To Bottom Percent/.NET/Top To Bottom Percent/Top To Bottom Percent/Program.cs +++ b/Conditional Formatting/Top To Bottom Percent/.NET/Top To Bottom Percent/Top To Bottom Percent/Program.cs @@ -37,7 +37,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -49,3 +49,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Top To Bottom Percent/.NET/Top To Bottom Percent/Top To Bottom Percent/Top To Bottom Percent.csproj b/Conditional Formatting/Top To Bottom Percent/.NET/Top To Bottom Percent/Top To Bottom Percent/Top To Bottom Percent.csproj index 281f8af8..d36029b8 100644 --- a/Conditional Formatting/Top To Bottom Percent/.NET/Top To Bottom Percent/Top To Bottom Percent/Top To Bottom Percent.csproj +++ b/Conditional Formatting/Top To Bottom Percent/.NET/Top To Bottom Percent/Top To Bottom Percent/Top To Bottom Percent.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Top to Bottom Rank/.NET/Top to Bottom Rank/Top to Bottom Rank/Program.cs b/Conditional Formatting/Top to Bottom Rank/.NET/Top to Bottom Rank/Top to Bottom Rank/Program.cs index d2382b81..8586d58d 100644 --- a/Conditional Formatting/Top to Bottom Rank/.NET/Top to Bottom Rank/Top to Bottom Rank/Program.cs +++ b/Conditional Formatting/Top to Bottom Rank/.NET/Top to Bottom Rank/Top to Bottom Rank/Program.cs @@ -34,7 +34,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("TopToBottomRank.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/TopToBottomRank.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -46,3 +46,7 @@ static void Main(string[] args) } } + + + + diff --git a/Conditional Formatting/Top to Bottom Rank/.NET/Top to Bottom Rank/Top to Bottom Rank/Top to Bottom Rank.csproj b/Conditional Formatting/Top to Bottom Rank/.NET/Top to Bottom Rank/Top to Bottom Rank/Top to Bottom Rank.csproj index ca3854c2..b9449180 100644 --- a/Conditional Formatting/Top to Bottom Rank/.NET/Top to Bottom Rank/Top to Bottom Rank/Top to Bottom Rank.csproj +++ b/Conditional Formatting/Top to Bottom Rank/.NET/Top to Bottom Rank/Top to Bottom Rank/Top to Bottom Rank.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Output/.gitkeep b/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Program.cs b/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Program.cs index a8f849a7..4c46ab93 100644 --- a/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Program.cs +++ b/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Program.cs @@ -80,20 +80,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("UniqueandDuplicate.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/UniqueandDuplicate.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("UniqueandDuplicate.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Unique and Duplicate.csproj b/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Unique and Duplicate.csproj index ab4f7640..f2597411 100644 --- a/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Unique and Duplicate.csproj +++ b/Conditional Formatting/Unique and Duplicate/.NET/Unique and Duplicate/Unique and Duplicate/Unique and Duplicate.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Convert Excel to JSON/CSV to JSON/.NET/CSV To JSON/CSV To JSON/CSV To JSON.csproj b/Convert Excel to JSON/CSV to JSON/.NET/CSV To JSON/CSV To JSON/CSV To JSON.csproj index 4f0a2d16..69474d29 100644 --- a/Convert Excel to JSON/CSV to JSON/.NET/CSV To JSON/CSV To JSON/CSV To JSON.csproj +++ b/Convert Excel to JSON/CSV to JSON/.NET/CSV To JSON/CSV To JSON/CSV To JSON.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Convert Excel to JSON/CSV to JSON/.NET/CSV To JSON/CSV To JSON/Program.cs b/Convert Excel to JSON/CSV to JSON/.NET/CSV To JSON/CSV To JSON/Program.cs index 296d3533..56c60e1c 100644 --- a/Convert Excel to JSON/CSV to JSON/.NET/CSV To JSON/CSV To JSON/Program.cs +++ b/Convert Excel to JSON/CSV to JSON/.NET/CSV To JSON/CSV To JSON/Program.cs @@ -56,3 +56,7 @@ public void RangeToJSON() } } + + + + diff --git a/Convert Excel to JSON/Range to JSON with Schema/.NET/Range to JSON with Schema/Range to JSON with Schema/Program.cs b/Convert Excel to JSON/Range to JSON with Schema/.NET/Range to JSON with Schema/Range to JSON with Schema/Program.cs index a4cf0483..7571eb2f 100644 --- a/Convert Excel to JSON/Range to JSON with Schema/.NET/Range to JSON with Schema/Range to JSON with Schema/Program.cs +++ b/Convert Excel to JSON/Range to JSON with Schema/.NET/Range to JSON with Schema/Range to JSON with Schema/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region save as JSON //Saves the workbook to a JSON filestream, as schema by default - FileStream outputStream = new FileStream("Excel-Range-To-JSON-as-schema-default.json", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Excel-Range-To-JSON-as-schema-default.json"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAsJson(outputStream, range); //Saves the workbook to a JSON filestream as schema @@ -38,15 +38,13 @@ static void Main(string[] args) //Open default JSON //Open JSON with Schema - System.Diagnostics.Process process1 = new System.Diagnostics.Process(); - process1.StartInfo = new System.Diagnostics.ProcessStartInfo("Excel-Range-To-JSON-as-schema.json") - { - UseShellExecute = true - }; - process1.Start(); #endregion } } } } + + + + diff --git a/Convert Excel to JSON/Range to JSON with Schema/.NET/Range to JSON with Schema/Range to JSON with Schema/Range to JSON with Schema.csproj b/Convert Excel to JSON/Range to JSON with Schema/.NET/Range to JSON with Schema/Range to JSON with Schema/Range to JSON with Schema.csproj index 3ce168d8..11c8b86d 100644 --- a/Convert Excel to JSON/Range to JSON with Schema/.NET/Range to JSON with Schema/Range to JSON with Schema/Range to JSON with Schema.csproj +++ b/Convert Excel to JSON/Range to JSON with Schema/.NET/Range to JSON with Schema/Range to JSON with Schema/Range to JSON with Schema.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Convert Excel to JSON/Range to JSON without Schema/.NET/Range to JSON without Schema/Range to JSON without Schema/Program.cs b/Convert Excel to JSON/Range to JSON without Schema/.NET/Range to JSON without Schema/Range to JSON without Schema/Program.cs index b4fadf45..484e3c04 100644 --- a/Convert Excel to JSON/Range to JSON without Schema/.NET/Range to JSON without Schema/Range to JSON without Schema/Program.cs +++ b/Convert Excel to JSON/Range to JSON without Schema/.NET/Range to JSON without Schema/Range to JSON without Schema/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region save as JSON //Saves the workbook to a JSON filestream, as schema by default - FileStream outputStream = new FileStream("Excel-Range-To-JSON-filestream-without-schema.json", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Excel-Range-To-JSON-filestream-without-schema.json"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAsJson(outputStream, range, false); #endregion @@ -37,3 +37,7 @@ static void Main(string[] args) } } + + + + diff --git a/Convert Excel to JSON/Range to JSON without Schema/.NET/Range to JSON without Schema/Range to JSON without Schema/Range to JSON without Schema.csproj b/Convert Excel to JSON/Range to JSON without Schema/.NET/Range to JSON without Schema/Range to JSON without Schema/Range to JSON without Schema.csproj index 5bfef113..80e9e717 100644 --- a/Convert Excel to JSON/Range to JSON without Schema/.NET/Range to JSON without Schema/Range to JSON without Schema/Range to JSON without Schema.csproj +++ b/Convert Excel to JSON/Range to JSON without Schema/.NET/Range to JSON without Schema/Range to JSON without Schema/Range to JSON without Schema.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/Program.cs b/Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/Program.cs index fe4ec467..6bd634fd 100644 --- a/Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/Program.cs +++ b/Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/Program.cs @@ -18,7 +18,7 @@ static void Main(string[] args) #region save as JSON //Saves the workbook to a JSON filestream, as schema by default - FileStream outputStream = new FileStream("Excel-Workbook-To-JSON-as-schema-default.json", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Excel-Workbook-To-JSON-as-schema-default.json"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAsJson(outputStream); //Saves the workbook to a JSON filestream as schema @@ -35,15 +35,13 @@ static void Main(string[] args) //Open default JSON //Open JSON with Schema - System.Diagnostics.Process process1 = new System.Diagnostics.Process(); - process1.StartInfo = new System.Diagnostics.ProcessStartInfo("Excel-Workbook-To-JSON-as-schema.json") - { - UseShellExecute = true - }; - process1.Start(); #endregion } } } } + + + + diff --git a/Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/Workbook to JSON with Schema.csproj b/Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/Workbook to JSON with Schema.csproj index 69f36760..be8a47d3 100644 --- a/Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/Workbook to JSON with Schema.csproj +++ b/Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/Workbook to JSON with Schema.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Convert Excel to JSON/Workbook to JSON without Schema/.NET/Workbook to JSON without Schema/Workbook to JSON without Schema/Program.cs b/Convert Excel to JSON/Workbook to JSON without Schema/.NET/Workbook to JSON without Schema/Workbook to JSON without Schema/Program.cs index 952b0bf9..7f918421 100644 --- a/Convert Excel to JSON/Workbook to JSON without Schema/.NET/Workbook to JSON without Schema/Workbook to JSON without Schema/Program.cs +++ b/Convert Excel to JSON/Workbook to JSON without Schema/.NET/Workbook to JSON without Schema/Workbook to JSON without Schema/Program.cs @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/Convert Excel to JSON/Workbook to JSON without Schema/.NET/Workbook to JSON without Schema/Workbook to JSON without Schema/Workbook to JSON without Schema.csproj b/Convert Excel to JSON/Workbook to JSON without Schema/.NET/Workbook to JSON without Schema/Workbook to JSON without Schema/Workbook to JSON without Schema.csproj index da9110f0..8a57ae47 100644 --- a/Convert Excel to JSON/Workbook to JSON without Schema/.NET/Workbook to JSON without Schema/Workbook to JSON without Schema/Workbook to JSON without Schema.csproj +++ b/Convert Excel to JSON/Workbook to JSON without Schema/.NET/Workbook to JSON without Schema/Workbook to JSON without Schema/Workbook to JSON without Schema.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Convert Excel to JSON/Worksheet to JSON with Schema/.NET/Worksheet to JSON with Schema/Worksheet to JSON with Schema/Program.cs b/Convert Excel to JSON/Worksheet to JSON with Schema/.NET/Worksheet to JSON with Schema/Worksheet to JSON with Schema/Program.cs index 33234baf..603f9334 100644 --- a/Convert Excel to JSON/Worksheet to JSON with Schema/.NET/Worksheet to JSON with Schema/Worksheet to JSON with Schema/Program.cs +++ b/Convert Excel to JSON/Worksheet to JSON with Schema/.NET/Worksheet to JSON with Schema/Worksheet to JSON with Schema/Program.cs @@ -35,15 +35,13 @@ static void Main(string[] args) //Open default JSON //Open JSON with Schema - System.Diagnostics.Process process1 = new System.Diagnostics.Process(); - process1.StartInfo = new System.Diagnostics.ProcessStartInfo("Excel-Worksheet-To-JSON-filestream-as-schema.json") - { - UseShellExecute = true - }; - process1.Start(); #endregion } } } } + + + + diff --git a/Convert Excel to JSON/Worksheet to JSON with Schema/.NET/Worksheet to JSON with Schema/Worksheet to JSON with Schema/Worksheet to JSON with Schema.csproj b/Convert Excel to JSON/Worksheet to JSON with Schema/.NET/Worksheet to JSON with Schema/Worksheet to JSON with Schema/Worksheet to JSON with Schema.csproj index 23391fd0..89a33480 100644 --- a/Convert Excel to JSON/Worksheet to JSON with Schema/.NET/Worksheet to JSON with Schema/Worksheet to JSON with Schema/Worksheet to JSON with Schema.csproj +++ b/Convert Excel to JSON/Worksheet to JSON with Schema/.NET/Worksheet to JSON with Schema/Worksheet to JSON with Schema/Worksheet to JSON with Schema.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Convert Excel to JSON/Worksheet to JSON without Schema/.NET/Worksheet to JSON without Schema/Worksheet to JSON without Schema/Program.cs b/Convert Excel to JSON/Worksheet to JSON without Schema/.NET/Worksheet to JSON without Schema/Worksheet to JSON without Schema/Program.cs index 8596f70c..4a031edc 100644 --- a/Convert Excel to JSON/Worksheet to JSON without Schema/.NET/Worksheet to JSON without Schema/Worksheet to JSON without Schema/Program.cs +++ b/Convert Excel to JSON/Worksheet to JSON without Schema/.NET/Worksheet to JSON without Schema/Worksheet to JSON without Schema/Program.cs @@ -18,7 +18,7 @@ static void Main(string[] args) #region save as JSON //Saves the workbook to a JSON filestream, as schema by default - FileStream outputStream = new FileStream("Excel-Worksheet-To-JSON-filestream-without-schema.json", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Excel-Worksheet-To-JSON-filestream-without-schema.json"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAsJson(outputStream, worksheet,false); #endregion @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/Convert Excel to JSON/Worksheet to JSON without Schema/.NET/Worksheet to JSON without Schema/Worksheet to JSON without Schema/Worksheet to JSON without Schema.csproj b/Convert Excel to JSON/Worksheet to JSON without Schema/.NET/Worksheet to JSON without Schema/Worksheet to JSON without Schema/Worksheet to JSON without Schema.csproj index eeb361ad..e87a4262 100644 --- a/Convert Excel to JSON/Worksheet to JSON without Schema/.NET/Worksheet to JSON without Schema/Worksheet to JSON without Schema/Worksheet to JSON without Schema.csproj +++ b/Convert Excel to JSON/Worksheet to JSON without Schema/.NET/Worksheet to JSON without Schema/Worksheet to JSON without Schema/Worksheet to JSON without Schema.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Create and Edit CSV/CsvToExcel/CsvToExcel/CsvToExcel.csproj b/Create and Edit CSV/CsvToExcel/CsvToExcel/CsvToExcel.csproj index fb93f4ff..3ef9d2fb 100644 --- a/Create and Edit CSV/CsvToExcel/CsvToExcel/CsvToExcel.csproj +++ b/Create and Edit CSV/CsvToExcel/CsvToExcel/CsvToExcel.csproj @@ -17,7 +17,11 @@ Always + + Always + + diff --git a/Create and Edit CSV/CsvToExcel/CsvToExcel/Program.cs b/Create and Edit CSV/CsvToExcel/CsvToExcel/Program.cs index 3bbadfb0..219a4dad 100644 --- a/Create and Edit CSV/CsvToExcel/CsvToExcel/Program.cs +++ b/Create and Edit CSV/CsvToExcel/CsvToExcel/Program.cs @@ -36,3 +36,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit CSV/CustomCsvSeparator/CustomCsvSeparator/CustomCsvSeparator.csproj b/Create and Edit CSV/CustomCsvSeparator/CustomCsvSeparator/CustomCsvSeparator.csproj index ddbaf2ec..826aff1e 100644 --- a/Create and Edit CSV/CustomCsvSeparator/CustomCsvSeparator/CustomCsvSeparator.csproj +++ b/Create and Edit CSV/CustomCsvSeparator/CustomCsvSeparator/CustomCsvSeparator.csproj @@ -13,7 +13,11 @@ Always + + Always + + diff --git a/Create and Edit CSV/CustomCsvSeparator/CustomCsvSeparator/Program.cs b/Create and Edit CSV/CustomCsvSeparator/CustomCsvSeparator/Program.cs index c9359ba9..5ae811ae 100644 --- a/Create and Edit CSV/CustomCsvSeparator/CustomCsvSeparator/Program.cs +++ b/Create and Edit CSV/CustomCsvSeparator/CustomCsvSeparator/Program.cs @@ -28,3 +28,7 @@ static void Main(string[] args) } + + + + diff --git a/Create and Edit CSV/ExcelToCSV/ExcelToCSV/ExcelToCSV.csproj b/Create and Edit CSV/ExcelToCSV/ExcelToCSV/ExcelToCSV.csproj index ddbaf2ec..826aff1e 100644 --- a/Create and Edit CSV/ExcelToCSV/ExcelToCSV/ExcelToCSV.csproj +++ b/Create and Edit CSV/ExcelToCSV/ExcelToCSV/ExcelToCSV.csproj @@ -13,7 +13,11 @@ Always + + Always + + diff --git a/Create and Edit CSV/ExcelToCSV/ExcelToCSV/Program.cs b/Create and Edit CSV/ExcelToCSV/ExcelToCSV/Program.cs index d27284cf..9a8032fb 100644 --- a/Create and Edit CSV/ExcelToCSV/ExcelToCSV/Program.cs +++ b/Create and Edit CSV/ExcelToCSV/ExcelToCSV/Program.cs @@ -28,3 +28,7 @@ static void Main(string[] args) } + + + + diff --git a/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/3D Chart.csproj b/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/3D Chart.csproj index d87e3a1e..138d0502 100644 --- a/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/3D Chart.csproj +++ b/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/3D Chart.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/Output/.gitkeep b/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/Program.cs b/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/Program.cs index 0e0ac16e..9bdfdb77 100644 --- a/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/Program.cs +++ b/Create and Edit Charts/3D Chart/.NET/3D Chart/3D Chart/Program.cs @@ -62,20 +62,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Chart.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Charts/Axis/.NET/Axis/Axis/Axis.csproj b/Create and Edit Charts/Axis/.NET/Axis/Axis/Axis.csproj index 90c103e9..f4317544 100644 --- a/Create and Edit Charts/Axis/.NET/Axis/Axis/Axis.csproj +++ b/Create and Edit Charts/Axis/.NET/Axis/Axis/Axis.csproj @@ -15,7 +15,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Axis/.NET/Axis/Axis/Program.cs b/Create and Edit Charts/Axis/.NET/Axis/Axis/Program.cs index 8e5df335..5bffedb7 100644 --- a/Create and Edit Charts/Axis/.NET/Axis/Axis/Program.cs +++ b/Create and Edit Charts/Axis/.NET/Axis/Axis/Program.cs @@ -83,7 +83,7 @@ public static void Main(string[] args) chart.PrimaryValueAxis.HasMinorGridLines = false; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); //Dispose streams @@ -93,3 +93,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/Box and Whisker/.NET/Box and Whisker/Box and Whisker/Box and Whisker.csproj b/Create and Edit Charts/Box and Whisker/.NET/Box and Whisker/Box and Whisker/Box and Whisker.csproj index 542718a8..3d7026a3 100644 --- a/Create and Edit Charts/Box and Whisker/.NET/Box and Whisker/Box and Whisker/Box and Whisker.csproj +++ b/Create and Edit Charts/Box and Whisker/.NET/Box and Whisker/Box and Whisker/Box and Whisker.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Box and Whisker/.NET/Box and Whisker/Box and Whisker/Program.cs b/Create and Edit Charts/Box and Whisker/.NET/Box and Whisker/Box and Whisker/Program.cs index d8fa865d..a52dfb93 100644 --- a/Create and Edit Charts/Box and Whisker/.NET/Box and Whisker/Box and Whisker/Program.cs +++ b/Create and Edit Charts/Box and Whisker/.NET/Box and Whisker/Box and Whisker/Program.cs @@ -57,7 +57,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("BoxandWhisker.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/BoxandWhisker.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -69,3 +69,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Chart Appearance/.NET/Chart Appearance/Chart Appearance/Chart Appearance.csproj b/Create and Edit Charts/Chart Appearance/.NET/Chart Appearance/Chart Appearance/Chart Appearance.csproj index c2f18d9d..3c37caec 100644 --- a/Create and Edit Charts/Chart Appearance/.NET/Chart Appearance/Chart Appearance/Chart Appearance.csproj +++ b/Create and Edit Charts/Chart Appearance/.NET/Chart Appearance/Chart Appearance/Chart Appearance.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Chart Appearance/.NET/Chart Appearance/Chart Appearance/Program.cs b/Create and Edit Charts/Chart Appearance/.NET/Chart Appearance/Chart Appearance/Program.cs index dc5eaad9..94de1b84 100644 --- a/Create and Edit Charts/Chart Appearance/.NET/Chart Appearance/Chart Appearance/Program.cs +++ b/Create and Edit Charts/Chart Appearance/.NET/Chart Appearance/Chart Appearance/Program.cs @@ -45,7 +45,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -57,3 +57,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Chart Area/.NET/Chart Area/Chart Area/Chart Area.csproj b/Create and Edit Charts/Chart Area/.NET/Chart Area/Chart Area/Chart Area.csproj index 2fd8ec81..6717097d 100644 --- a/Create and Edit Charts/Chart Area/.NET/Chart Area/Chart Area/Chart Area.csproj +++ b/Create and Edit Charts/Chart Area/.NET/Chart Area/Chart Area/Chart Area.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Chart Area/.NET/Chart Area/Chart Area/Program.cs b/Create and Edit Charts/Chart Area/.NET/Chart Area/Chart Area/Program.cs index 4b85db1b..7189d63f 100644 --- a/Create and Edit Charts/Chart Area/.NET/Chart Area/Chart Area/Program.cs +++ b/Create and Edit Charts/Chart Area/.NET/Chart Area/Chart Area/Program.cs @@ -31,7 +31,7 @@ public static void Main(string[] args) chartArea.Fill.ForeColor = Color.White; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); //Dispose streams @@ -41,3 +41,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/Chart Bars Spacing/.NET/Chart Bars Spacing/Chart Bars Spacing/Chart Bars Spacing.csproj b/Create and Edit Charts/Chart Bars Spacing/.NET/Chart Bars Spacing/Chart Bars Spacing/Chart Bars Spacing.csproj index fa55bc1a..a3facafa 100644 --- a/Create and Edit Charts/Chart Bars Spacing/.NET/Chart Bars Spacing/Chart Bars Spacing/Chart Bars Spacing.csproj +++ b/Create and Edit Charts/Chart Bars Spacing/.NET/Chart Bars Spacing/Chart Bars Spacing/Chart Bars Spacing.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Chart Bars Spacing/.NET/Chart Bars Spacing/Chart Bars Spacing/Program.cs b/Create and Edit Charts/Chart Bars Spacing/.NET/Chart Bars Spacing/Chart Bars Spacing/Program.cs index 37f6611e..acb3d89d 100644 --- a/Create and Edit Charts/Chart Bars Spacing/.NET/Chart Bars Spacing/Chart Bars Spacing/Program.cs +++ b/Create and Edit Charts/Chart Bars Spacing/.NET/Chart Bars Spacing/Chart Bars Spacing/Program.cs @@ -39,7 +39,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -51,3 +51,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Chart Elements/.NET/Chart Elements/Chart Elements/Chart Elements.csproj b/Create and Edit Charts/Chart Elements/.NET/Chart Elements/Chart Elements/Chart Elements.csproj index 4b70d70b..4120c79d 100644 --- a/Create and Edit Charts/Chart Elements/.NET/Chart Elements/Chart Elements/Chart Elements.csproj +++ b/Create and Edit Charts/Chart Elements/.NET/Chart Elements/Chart Elements/Chart Elements.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Chart Elements/.NET/Chart Elements/Chart Elements/Program.cs b/Create and Edit Charts/Chart Elements/.NET/Chart Elements/Chart Elements/Program.cs index 11be6173..fde2c36d 100644 --- a/Create and Edit Charts/Chart Elements/.NET/Chart Elements/Chart Elements/Program.cs +++ b/Create and Edit Charts/Chart Elements/.NET/Chart Elements/Chart Elements/Program.cs @@ -131,7 +131,7 @@ static void Main(string[] args) chart1.ChartArea.Fill.Transparency = 0.5; #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -143,3 +143,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Chart Gridlines/.NET/Chart Gridlines/Chart Gridlines/Chart Gridlines.csproj b/Create and Edit Charts/Chart Gridlines/.NET/Chart Gridlines/Chart Gridlines/Chart Gridlines.csproj index 81e05adb..d5699db9 100644 --- a/Create and Edit Charts/Chart Gridlines/.NET/Chart Gridlines/Chart Gridlines/Chart Gridlines.csproj +++ b/Create and Edit Charts/Chart Gridlines/.NET/Chart Gridlines/Chart Gridlines/Chart Gridlines.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Chart Gridlines/.NET/Chart Gridlines/Chart Gridlines/Program.cs b/Create and Edit Charts/Chart Gridlines/.NET/Chart Gridlines/Chart Gridlines/Program.cs index e9e5060e..892b9f9f 100644 --- a/Create and Edit Charts/Chart Gridlines/.NET/Chart Gridlines/Chart Gridlines/Program.cs +++ b/Create and Edit Charts/Chart Gridlines/.NET/Chart Gridlines/Chart Gridlines/Program.cs @@ -39,7 +39,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -51,3 +51,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Chart Series Border/.NET/Chart Series Border/Chart Series Border/Chart Series Border.csproj b/Create and Edit Charts/Chart Series Border/.NET/Chart Series Border/Chart Series Border/Chart Series Border.csproj index 9471dcb1..62966ced 100644 --- a/Create and Edit Charts/Chart Series Border/.NET/Chart Series Border/Chart Series Border/Chart Series Border.csproj +++ b/Create and Edit Charts/Chart Series Border/.NET/Chart Series Border/Chart Series Border/Chart Series Border.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Chart Series Border/.NET/Chart Series Border/Chart Series Border/Program.cs b/Create and Edit Charts/Chart Series Border/.NET/Chart Series Border/Chart Series Border/Program.cs index 63e7724a..01cb3e6e 100644 --- a/Create and Edit Charts/Chart Series Border/.NET/Chart Series Border/Chart Series Border/Program.cs +++ b/Create and Edit Charts/Chart Series Border/.NET/Chart Series Border/Chart Series Border/Program.cs @@ -32,7 +32,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -44,3 +44,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Chart Sheet/.NET/Chart Sheet/Chart Sheet/Chart Sheet.csproj b/Create and Edit Charts/Chart Sheet/.NET/Chart Sheet/Chart Sheet/Chart Sheet.csproj index b902345c..e8467e54 100644 --- a/Create and Edit Charts/Chart Sheet/.NET/Chart Sheet/Chart Sheet/Chart Sheet.csproj +++ b/Create and Edit Charts/Chart Sheet/.NET/Chart Sheet/Chart Sheet/Chart Sheet.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Chart Sheet/.NET/Chart Sheet/Chart Sheet/Program.cs b/Create and Edit Charts/Chart Sheet/.NET/Chart Sheet/Chart Sheet/Program.cs index b43a4596..28585b2d 100644 --- a/Create and Edit Charts/Chart Sheet/.NET/Chart Sheet/Chart Sheet/Program.cs +++ b/Create and Edit Charts/Chart Sheet/.NET/Chart Sheet/Chart Sheet/Program.cs @@ -26,7 +26,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -38,3 +38,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Chart Title/.NET/Chart Title/Chart Title/Chart Title.csproj b/Create and Edit Charts/Chart Title/.NET/Chart Title/Chart Title/Chart Title.csproj index 4ccd6004..1875cf0c 100644 --- a/Create and Edit Charts/Chart Title/.NET/Chart Title/Chart Title/Chart Title.csproj +++ b/Create and Edit Charts/Chart Title/.NET/Chart Title/Chart Title/Chart Title.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Chart Title/.NET/Chart Title/Chart Title/Program.cs b/Create and Edit Charts/Chart Title/.NET/Chart Title/Chart Title/Program.cs index cd1734e4..628758f2 100644 --- a/Create and Edit Charts/Chart Title/.NET/Chart Title/Chart Title/Program.cs +++ b/Create and Edit Charts/Chart Title/.NET/Chart Title/Chart Title/Program.cs @@ -30,7 +30,7 @@ public static void Main(string[] args) chart.ChartTitleArea.Layout.Left = 20; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); outputStream.Dispose(); inputStream.Dispose(); @@ -38,3 +38,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Chart from Scratch.csproj b/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Chart from Scratch.csproj index 2d14fc9c..003540fc 100644 --- a/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Chart from Scratch.csproj +++ b/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Chart from Scratch.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Output/.gitkeep b/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Program.cs b/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Program.cs index 28d3c39c..4e7cdeb4 100644 --- a/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Program.cs +++ b/Create and Edit Charts/Chart from Scratch/.NET/Chart from Scratch/Chart from Scratch/Program.cs @@ -37,20 +37,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Chart.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Chart through Series.csproj b/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Chart through Series.csproj index 763da78d..5d4cb85a 100644 --- a/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Chart through Series.csproj +++ b/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Chart through Series.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Output/.gitkeep b/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Program.cs b/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Program.cs index 95fb4358..c696c1c0 100644 --- a/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Program.cs +++ b/Create and Edit Charts/Chart through Series/.NET/Chart through Series/Chart through Series/Program.cs @@ -66,20 +66,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Chart.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/Create Chart.csproj b/Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/Create Chart.csproj index b13de0f4..94a1bfaf 100644 --- a/Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/Create Chart.csproj +++ b/Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/Create Chart.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/Program.cs b/Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/Program.cs index a8c68970..ac533178 100644 --- a/Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/Program.cs +++ b/Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/Program.cs @@ -46,7 +46,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -58,3 +58,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Create Sparkline/.NET/Create Sparkline/Create Sparkline/Create Sparkline.csproj b/Create and Edit Charts/Create Sparkline/.NET/Create Sparkline/Create Sparkline/Create Sparkline.csproj index d0e8e10d..0d8ec4f1 100644 --- a/Create and Edit Charts/Create Sparkline/.NET/Create Sparkline/Create Sparkline/Create Sparkline.csproj +++ b/Create and Edit Charts/Create Sparkline/.NET/Create Sparkline/Create Sparkline/Create Sparkline.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Create Sparkline/.NET/Create Sparkline/Create Sparkline/Program.cs b/Create and Edit Charts/Create Sparkline/.NET/Create Sparkline/Create Sparkline/Program.cs index 6aa174c3..585579b0 100644 --- a/Create and Edit Charts/Create Sparkline/.NET/Create Sparkline/Create Sparkline/Program.cs +++ b/Create and Edit Charts/Create Sparkline/.NET/Create Sparkline/Create Sparkline/Program.cs @@ -31,7 +31,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Sparklines.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Sparklines.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -43,3 +43,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Custom Chart.csproj b/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Custom Chart.csproj index 7e86147a..a10f1267 100644 --- a/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Custom Chart.csproj +++ b/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Custom Chart.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Output/.gitkeep b/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Program.cs b/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Program.cs index 360e7ad1..439db045 100644 --- a/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Program.cs +++ b/Create and Edit Charts/Custom Chart/.NET/Custom Chart/Custom Chart/Program.cs @@ -105,20 +105,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Chart.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Charts/Data Labels/.NET/Data Labels/Data Labels/Data Labels.csproj b/Create and Edit Charts/Data Labels/.NET/Data Labels/Data Labels/Data Labels.csproj index 6418ad70..cbc9e9a1 100644 --- a/Create and Edit Charts/Data Labels/.NET/Data Labels/Data Labels/Data Labels.csproj +++ b/Create and Edit Charts/Data Labels/.NET/Data Labels/Data Labels/Data Labels.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Data Labels/.NET/Data Labels/Data Labels/Program.cs b/Create and Edit Charts/Data Labels/.NET/Data Labels/Data Labels/Program.cs index 9c08cf87..1dca4925 100644 --- a/Create and Edit Charts/Data Labels/.NET/Data Labels/Data Labels/Program.cs +++ b/Create and Edit Charts/Data Labels/.NET/Data Labels/Data Labels/Program.cs @@ -46,7 +46,7 @@ public static void Main(string[] args) (dataLabel as ChartDataLabelsImpl).NumberFormat = "#,##0.00"; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); //Dispose streams @@ -56,3 +56,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/DataTable in Chart.csproj b/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/DataTable in Chart.csproj index bc162449..a502a05e 100644 --- a/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/DataTable in Chart.csproj +++ b/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/DataTable in Chart.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/Output/.gitkeep b/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/Program.cs b/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/Program.cs index 654bba17..4853120c 100644 --- a/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/Program.cs +++ b/Create and Edit Charts/DataTable in Chart/.NET/DataTable in Chart/DataTable in Chart/Program.cs @@ -61,20 +61,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Chart.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Charts/Drop Lines/.NET/Drop Lines/Drop Lines/Drop Lines.csproj b/Create and Edit Charts/Drop Lines/.NET/Drop Lines/Drop Lines/Drop Lines.csproj index e47e51f1..360b0ca2 100644 --- a/Create and Edit Charts/Drop Lines/.NET/Drop Lines/Drop Lines/Drop Lines.csproj +++ b/Create and Edit Charts/Drop Lines/.NET/Drop Lines/Drop Lines/Drop Lines.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Drop Lines/.NET/Drop Lines/Drop Lines/Program.cs b/Create and Edit Charts/Drop Lines/.NET/Drop Lines/Drop Lines/Program.cs index ffa8ccd9..854202fa 100644 --- a/Create and Edit Charts/Drop Lines/.NET/Drop Lines/Drop Lines/Program.cs +++ b/Create and Edit Charts/Drop Lines/.NET/Drop Lines/Drop Lines/Program.cs @@ -46,7 +46,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -58,3 +58,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Edit Sparkline/.NET/Edit Sparkline/Edit Sparkline/Edit Sparkline.csproj b/Create and Edit Charts/Edit Sparkline/.NET/Edit Sparkline/Edit Sparkline/Edit Sparkline.csproj index 24996576..8fb2e49b 100644 --- a/Create and Edit Charts/Edit Sparkline/.NET/Edit Sparkline/Edit Sparkline/Edit Sparkline.csproj +++ b/Create and Edit Charts/Edit Sparkline/.NET/Edit Sparkline/Edit Sparkline/Edit Sparkline.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Edit Sparkline/.NET/Edit Sparkline/Edit Sparkline/Program.cs b/Create and Edit Charts/Edit Sparkline/.NET/Edit Sparkline/Edit Sparkline/Program.cs index 604bfdc4..a1b45c3c 100644 --- a/Create and Edit Charts/Edit Sparkline/.NET/Edit Sparkline/Edit Sparkline/Program.cs +++ b/Create and Edit Charts/Edit Sparkline/.NET/Edit Sparkline/Edit Sparkline/Program.cs @@ -26,7 +26,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("EditSparklines.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/EditSparklines.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -38,3 +38,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Explode Pie Chart/.NET/Explode Pie Chart/Explode Pie Chart/Explode Pie Chart.csproj b/Create and Edit Charts/Explode Pie Chart/.NET/Explode Pie Chart/Explode Pie Chart/Explode Pie Chart.csproj index 70de0726..632ef6a1 100644 --- a/Create and Edit Charts/Explode Pie Chart/.NET/Explode Pie Chart/Explode Pie Chart/Explode Pie Chart.csproj +++ b/Create and Edit Charts/Explode Pie Chart/.NET/Explode Pie Chart/Explode Pie Chart/Explode Pie Chart.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Explode Pie Chart/.NET/Explode Pie Chart/Explode Pie Chart/Program.cs b/Create and Edit Charts/Explode Pie Chart/.NET/Explode Pie Chart/Explode Pie Chart/Program.cs index fc1da5fd..da4d2fb0 100644 --- a/Create and Edit Charts/Explode Pie Chart/.NET/Explode Pie Chart/Explode Pie Chart/Program.cs +++ b/Create and Edit Charts/Explode Pie Chart/.NET/Explode Pie Chart/Explode Pie Chart/Program.cs @@ -39,7 +39,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -51,3 +51,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Font Settings in Chart/.NET/Font Settings in Chart/Font Settings in Chart/Font Settings in Chart.csproj b/Create and Edit Charts/Font Settings in Chart/.NET/Font Settings in Chart/Font Settings in Chart/Font Settings in Chart.csproj index 2280d895..297d98c9 100644 --- a/Create and Edit Charts/Font Settings in Chart/.NET/Font Settings in Chart/Font Settings in Chart/Font Settings in Chart.csproj +++ b/Create and Edit Charts/Font Settings in Chart/.NET/Font Settings in Chart/Font Settings in Chart/Font Settings in Chart.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Font Settings in Chart/.NET/Font Settings in Chart/Font Settings in Chart/Program.cs b/Create and Edit Charts/Font Settings in Chart/.NET/Font Settings in Chart/Font Settings in Chart/Program.cs index 80db48aa..3c2fcd57 100644 --- a/Create and Edit Charts/Font Settings in Chart/.NET/Font Settings in Chart/Font Settings in Chart/Program.cs +++ b/Create and Edit Charts/Font Settings in Chart/.NET/Font Settings in Chart/Font Settings in Chart/Program.cs @@ -47,7 +47,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -59,3 +59,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Funnel/.NET/Funnel/Funnel/Funnel.csproj b/Create and Edit Charts/Funnel/.NET/Funnel/Funnel/Funnel.csproj index ddbaf2ec..0f8e6126 100644 --- a/Create and Edit Charts/Funnel/.NET/Funnel/Funnel/Funnel.csproj +++ b/Create and Edit Charts/Funnel/.NET/Funnel/Funnel/Funnel.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Funnel/.NET/Funnel/Funnel/Program.cs b/Create and Edit Charts/Funnel/.NET/Funnel/Funnel/Program.cs index d40b40b8..e2c1a68b 100644 --- a/Create and Edit Charts/Funnel/.NET/Funnel/Funnel/Program.cs +++ b/Create and Edit Charts/Funnel/.NET/Funnel/Funnel/Program.cs @@ -38,7 +38,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Funnel.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Funnel.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -50,3 +50,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Gradient Fill/.NET/Gradient Fill/Gradient Fill/Gradient Fill.csproj b/Create and Edit Charts/Gradient Fill/.NET/Gradient Fill/Gradient Fill/Gradient Fill.csproj index 6ad8a52d..62bf4f09 100644 --- a/Create and Edit Charts/Gradient Fill/.NET/Gradient Fill/Gradient Fill/Gradient Fill.csproj +++ b/Create and Edit Charts/Gradient Fill/.NET/Gradient Fill/Gradient Fill/Gradient Fill.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Gradient Fill/.NET/Gradient Fill/Gradient Fill/Program.cs b/Create and Edit Charts/Gradient Fill/.NET/Gradient Fill/Gradient Fill/Program.cs index 909caa81..2fea919f 100644 --- a/Create and Edit Charts/Gradient Fill/.NET/Gradient Fill/Gradient Fill/Program.cs +++ b/Create and Edit Charts/Gradient Fill/.NET/Gradient Fill/Gradient Fill/Program.cs @@ -58,7 +58,7 @@ static void Main(string[] args) chartFillImpl2.GradientStops.Add(gradientStopImpl4); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -69,3 +69,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/High Low Lines/.NET/High Low Lines/High Low Lines/High Low Lines.csproj b/Create and Edit Charts/High Low Lines/.NET/High Low Lines/High Low Lines/High Low Lines.csproj index 6f1a4ec1..b515f03e 100644 --- a/Create and Edit Charts/High Low Lines/.NET/High Low Lines/High Low Lines/High Low Lines.csproj +++ b/Create and Edit Charts/High Low Lines/.NET/High Low Lines/High Low Lines/High Low Lines.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/High Low Lines/.NET/High Low Lines/High Low Lines/Program.cs b/Create and Edit Charts/High Low Lines/.NET/High Low Lines/High Low Lines/Program.cs index 0506de59..5cea30e8 100644 --- a/Create and Edit Charts/High Low Lines/.NET/High Low Lines/High Low Lines/Program.cs +++ b/Create and Edit Charts/High Low Lines/.NET/High Low Lines/High Low Lines/Program.cs @@ -46,7 +46,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -58,3 +58,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Histogram/.NET/Histogram/Histogram/Histogram.csproj b/Create and Edit Charts/Histogram/.NET/Histogram/Histogram/Histogram.csproj index ddbaf2ec..0f8e6126 100644 --- a/Create and Edit Charts/Histogram/.NET/Histogram/Histogram/Histogram.csproj +++ b/Create and Edit Charts/Histogram/.NET/Histogram/Histogram/Histogram.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Histogram/.NET/Histogram/Histogram/Program.cs b/Create and Edit Charts/Histogram/.NET/Histogram/Histogram/Program.cs index 0a006eaf..af5839f0 100644 --- a/Create and Edit Charts/Histogram/.NET/Histogram/Histogram/Program.cs +++ b/Create and Edit Charts/Histogram/.NET/Histogram/Histogram/Program.cs @@ -40,7 +40,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Histogram.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Histogram.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -52,3 +52,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Legend/.NET/Legend/Legend/Legend.csproj b/Create and Edit Charts/Legend/.NET/Legend/Legend/Legend.csproj index 90c103e9..f4317544 100644 --- a/Create and Edit Charts/Legend/.NET/Legend/Legend/Legend.csproj +++ b/Create and Edit Charts/Legend/.NET/Legend/Legend/Legend.csproj @@ -15,7 +15,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Legend/.NET/Legend/Legend/Program.cs b/Create and Edit Charts/Legend/.NET/Legend/Legend/Program.cs index 371cf2dc..3bc011a1 100644 --- a/Create and Edit Charts/Legend/.NET/Legend/Legend/Program.cs +++ b/Create and Edit Charts/Legend/.NET/Legend/Legend/Program.cs @@ -48,7 +48,7 @@ public static void Main(string[] args) chart.Legend.IncludeInLayout = true; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); outputStream.Dispose(); inputStream.Dispose(); @@ -56,3 +56,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/No Fill/.NET/No Fill/No Fill/No Fill.csproj b/Create and Edit Charts/No Fill/.NET/No Fill/No Fill/No Fill.csproj index 9759464b..a1f9a00e 100644 --- a/Create and Edit Charts/No Fill/.NET/No Fill/No Fill/No Fill.csproj +++ b/Create and Edit Charts/No Fill/.NET/No Fill/No Fill/No Fill.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/No Fill/.NET/No Fill/No Fill/Program.cs b/Create and Edit Charts/No Fill/.NET/No Fill/No Fill/Program.cs index 03bd8023..a34db1a5 100644 --- a/Create and Edit Charts/No Fill/.NET/No Fill/No Fill/Program.cs +++ b/Create and Edit Charts/No Fill/.NET/No Fill/No Fill/Program.cs @@ -35,7 +35,7 @@ public static void Main(string[] args) serie1.SerieFormat.Fill.Visible = false; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -45,3 +45,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/Pareto/.NET/Pareto/Pareto/Pareto.csproj b/Create and Edit Charts/Pareto/.NET/Pareto/Pareto/Pareto.csproj index ddbaf2ec..0f8e6126 100644 --- a/Create and Edit Charts/Pareto/.NET/Pareto/Pareto/Pareto.csproj +++ b/Create and Edit Charts/Pareto/.NET/Pareto/Pareto/Pareto.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Pareto/.NET/Pareto/Pareto/Program.cs b/Create and Edit Charts/Pareto/.NET/Pareto/Pareto/Program.cs index 6c6b5b0a..a891efa6 100644 --- a/Create and Edit Charts/Pareto/.NET/Pareto/Pareto/Program.cs +++ b/Create and Edit Charts/Pareto/.NET/Pareto/Pareto/Program.cs @@ -41,7 +41,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Pareto.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Pareto.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -53,3 +53,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Pattern Fill/.NET/Pattern Fill/Pattern Fill/Pattern Fill.csproj b/Create and Edit Charts/Pattern Fill/.NET/Pattern Fill/Pattern Fill/Pattern Fill.csproj index b95cae89..7127799b 100644 --- a/Create and Edit Charts/Pattern Fill/.NET/Pattern Fill/Pattern Fill/Pattern Fill.csproj +++ b/Create and Edit Charts/Pattern Fill/.NET/Pattern Fill/Pattern Fill/Pattern Fill.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Pattern Fill/.NET/Pattern Fill/Pattern Fill/Program.cs b/Create and Edit Charts/Pattern Fill/.NET/Pattern Fill/Pattern Fill/Program.cs index 6845b350..82b008f8 100644 --- a/Create and Edit Charts/Pattern Fill/.NET/Pattern Fill/Pattern Fill/Program.cs +++ b/Create and Edit Charts/Pattern Fill/.NET/Pattern Fill/Pattern Fill/Program.cs @@ -51,7 +51,7 @@ public static void Main(string[] args) chartFillImpl2.Pattern = ExcelGradientPattern.Pat_5_Percent; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -61,3 +61,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/Picture Fill/.NET/Picture Fill/Picture Fill/Picture Fill.csproj b/Create and Edit Charts/Picture Fill/.NET/Picture Fill/Picture Fill/Picture Fill.csproj index f928f4d8..304c5b68 100644 --- a/Create and Edit Charts/Picture Fill/.NET/Picture Fill/Picture Fill/Picture Fill.csproj +++ b/Create and Edit Charts/Picture Fill/.NET/Picture Fill/Picture Fill/Picture Fill.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Picture Fill/.NET/Picture Fill/Picture Fill/Program.cs b/Create and Edit Charts/Picture Fill/.NET/Picture Fill/Picture Fill/Program.cs index 8100c865..08964421 100644 --- a/Create and Edit Charts/Picture Fill/.NET/Picture Fill/Picture Fill/Program.cs +++ b/Create and Edit Charts/Picture Fill/.NET/Picture Fill/Picture Fill/Program.cs @@ -38,7 +38,7 @@ static void Main(string[] args) serie2.SerieFormat.Fill.UserPicture(image2, "Image"); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -51,3 +51,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Picture Hyperlink in Chart/.NET/Picture Hyperlink in Chart/Picture Hyperlink in Chart/Picture Hyperlink in Chart.csproj b/Create and Edit Charts/Picture Hyperlink in Chart/.NET/Picture Hyperlink in Chart/Picture Hyperlink in Chart/Picture Hyperlink in Chart.csproj index d6fd2906..060cec32 100644 --- a/Create and Edit Charts/Picture Hyperlink in Chart/.NET/Picture Hyperlink in Chart/Picture Hyperlink in Chart/Picture Hyperlink in Chart.csproj +++ b/Create and Edit Charts/Picture Hyperlink in Chart/.NET/Picture Hyperlink in Chart/Picture Hyperlink in Chart/Picture Hyperlink in Chart.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Picture Hyperlink in Chart/.NET/Picture Hyperlink in Chart/Picture Hyperlink in Chart/Program.cs b/Create and Edit Charts/Picture Hyperlink in Chart/.NET/Picture Hyperlink in Chart/Picture Hyperlink in Chart/Program.cs index f543ac77..aa24775f 100644 --- a/Create and Edit Charts/Picture Hyperlink in Chart/.NET/Picture Hyperlink in Chart/Picture Hyperlink in Chart/Program.cs +++ b/Create and Edit Charts/Picture Hyperlink in Chart/.NET/Picture Hyperlink in Chart/Picture Hyperlink in Chart/Program.cs @@ -38,7 +38,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -51,3 +51,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Plot Area/.NET/Plot Area/Plot Area/Plot Area.csproj b/Create and Edit Charts/Plot Area/.NET/Plot Area/Plot Area/Plot Area.csproj index 925153de..299decb6 100644 --- a/Create and Edit Charts/Plot Area/.NET/Plot Area/Plot Area/Plot Area.csproj +++ b/Create and Edit Charts/Plot Area/.NET/Plot Area/Plot Area/Plot Area.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Plot Area/.NET/Plot Area/Plot Area/Program.cs b/Create and Edit Charts/Plot Area/.NET/Plot Area/Plot Area/Program.cs index c577bd6e..3661d4cb 100644 --- a/Create and Edit Charts/Plot Area/.NET/Plot Area/Plot Area/Program.cs +++ b/Create and Edit Charts/Plot Area/.NET/Plot Area/Plot Area/Program.cs @@ -34,7 +34,7 @@ public static void Main(string[] args) chartPlotArea.Layout.Left = 5; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); //Dispose streams @@ -44,3 +44,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/Remove Chart/.NET/Remove Chart/Remove Chart/Program.cs b/Create and Edit Charts/Remove Chart/.NET/Remove Chart/Remove Chart/Program.cs index 6367617b..1c141a33 100644 --- a/Create and Edit Charts/Remove Chart/.NET/Remove Chart/Remove Chart/Program.cs +++ b/Create and Edit Charts/Remove Chart/.NET/Remove Chart/Remove Chart/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Remove Chart/.NET/Remove Chart/Remove Chart/Remove Chart.csproj b/Create and Edit Charts/Remove Chart/.NET/Remove Chart/Remove Chart/Remove Chart.csproj index 60e5093c..e746c03f 100644 --- a/Create and Edit Charts/Remove Chart/.NET/Remove Chart/Remove Chart/Remove Chart.csproj +++ b/Create and Edit Charts/Remove Chart/.NET/Remove Chart/Remove Chart/Remove Chart.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Remove Sparklines/.NET/Remove Sparklines/Remove Sparklines/Program.cs b/Create and Edit Charts/Remove Sparklines/.NET/Remove Sparklines/Remove Sparklines/Program.cs index 1204fcef..c54aa712 100644 --- a/Create and Edit Charts/Remove Sparklines/.NET/Remove Sparklines/Remove Sparklines/Program.cs +++ b/Create and Edit Charts/Remove Sparklines/.NET/Remove Sparklines/Remove Sparklines/Program.cs @@ -29,7 +29,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveSparklines.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveSparklines.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -41,3 +41,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Remove Sparklines/.NET/Remove Sparklines/Remove Sparklines/Remove Sparklines.csproj b/Create and Edit Charts/Remove Sparklines/.NET/Remove Sparklines/Remove Sparklines/Remove Sparklines.csproj index d57769ef..9fbcb782 100644 --- a/Create and Edit Charts/Remove Sparklines/.NET/Remove Sparklines/Remove Sparklines/Remove Sparklines.csproj +++ b/Create and Edit Charts/Remove Sparklines/.NET/Remove Sparklines/Remove Sparklines/Remove Sparklines.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Series Lines/.NET/Series Lines/Series Lines/Program.cs b/Create and Edit Charts/Series Lines/.NET/Series Lines/Series Lines/Program.cs index 832e9a8d..df3d805b 100644 --- a/Create and Edit Charts/Series Lines/.NET/Series Lines/Series Lines/Program.cs +++ b/Create and Edit Charts/Series Lines/.NET/Series Lines/Series Lines/Program.cs @@ -46,7 +46,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Chart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -58,3 +58,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Series Lines/.NET/Series Lines/Series Lines/Series Lines.csproj b/Create and Edit Charts/Series Lines/.NET/Series Lines/Series Lines/Series Lines.csproj index 4c91c047..2932b811 100644 --- a/Create and Edit Charts/Series Lines/.NET/Series Lines/Series Lines/Series Lines.csproj +++ b/Create and Edit Charts/Series Lines/.NET/Series Lines/Series Lines/Series Lines.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Series/.NET/Series/Series/Output/.gitkeep b/Create and Edit Charts/Series/.NET/Series/Series/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Charts/Series/.NET/Series/Series/Program.cs b/Create and Edit Charts/Series/.NET/Series/Series/Program.cs index 6b774357..f1c8b3fe 100644 --- a/Create and Edit Charts/Series/.NET/Series/Series/Program.cs +++ b/Create and Edit Charts/Series/.NET/Series/Series/Program.cs @@ -80,14 +80,10 @@ public static void Main(string[] args) //Dispose streams stream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Output.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } -} \ No newline at end of file +} + + + diff --git a/Create and Edit Charts/Series/.NET/Series/Series/Series.csproj b/Create and Edit Charts/Series/.NET/Series/Series/Series.csproj index f88e1fff..819b14e2 100644 --- a/Create and Edit Charts/Series/.NET/Series/Series/Series.csproj +++ b/Create and Edit Charts/Series/.NET/Series/Series/Series.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Create and Edit Charts/Solid Fill/.NET/Solid Fill/Solid Fill/Program.cs b/Create and Edit Charts/Solid Fill/.NET/Solid Fill/Solid Fill/Program.cs index 09bd079a..eeddfae1 100644 --- a/Create and Edit Charts/Solid Fill/.NET/Solid Fill/Solid Fill/Program.cs +++ b/Create and Edit Charts/Solid Fill/.NET/Solid Fill/Solid Fill/Program.cs @@ -43,7 +43,7 @@ public static void Main(string[] args) chartFillImpl2.ForeColor = Color.FromArgb(143, 170, 220); ; //Saving the workbook as streams - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -53,3 +53,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Create and Edit Charts/Solid Fill/.NET/Solid Fill/Solid Fill/Solid Fill.csproj b/Create and Edit Charts/Solid Fill/.NET/Solid Fill/Solid Fill/Solid Fill.csproj index 1b7b2e0d..4df128ad 100644 --- a/Create and Edit Charts/Solid Fill/.NET/Solid Fill/Solid Fill/Solid Fill.csproj +++ b/Create and Edit Charts/Solid Fill/.NET/Solid Fill/Solid Fill/Solid Fill.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Sunburst/.NET/Sunburst/Sunburst/Program.cs b/Create and Edit Charts/Sunburst/.NET/Sunburst/Sunburst/Program.cs index a354b195..dc0453e8 100644 --- a/Create and Edit Charts/Sunburst/.NET/Sunburst/Sunburst/Program.cs +++ b/Create and Edit Charts/Sunburst/.NET/Sunburst/Sunburst/Program.cs @@ -35,7 +35,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Sunburst.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Sunburst.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -47,3 +47,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Sunburst/.NET/Sunburst/Sunburst/Sunburst.csproj b/Create and Edit Charts/Sunburst/.NET/Sunburst/Sunburst/Sunburst.csproj index ddbaf2ec..0f8e6126 100644 --- a/Create and Edit Charts/Sunburst/.NET/Sunburst/Sunburst/Sunburst.csproj +++ b/Create and Edit Charts/Sunburst/.NET/Sunburst/Sunburst/Sunburst.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Treemap/.NET/Treemap/Treemap/Program.cs b/Create and Edit Charts/Treemap/.NET/Treemap/Treemap/Program.cs index 324dd0ea..e7cd414c 100644 --- a/Create and Edit Charts/Treemap/.NET/Treemap/Treemap/Program.cs +++ b/Create and Edit Charts/Treemap/.NET/Treemap/Treemap/Program.cs @@ -35,7 +35,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Treemap.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Treemap.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -47,3 +47,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Treemap/.NET/Treemap/Treemap/Treemap.csproj b/Create and Edit Charts/Treemap/.NET/Treemap/Treemap/Treemap.csproj index ddbaf2ec..0f8e6126 100644 --- a/Create and Edit Charts/Treemap/.NET/Treemap/Treemap/Treemap.csproj +++ b/Create and Edit Charts/Treemap/.NET/Treemap/Treemap/Treemap.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/Create and Edit Charts/Waterfall/.NET/Waterfall/Waterfall/Program.cs b/Create and Edit Charts/Waterfall/.NET/Waterfall/Waterfall/Program.cs index e81c0b85..00853a1d 100644 --- a/Create and Edit Charts/Waterfall/.NET/Waterfall/Waterfall/Program.cs +++ b/Create and Edit Charts/Waterfall/.NET/Waterfall/Waterfall/Program.cs @@ -41,7 +41,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Waterfall.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Waterfall.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -53,3 +53,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Charts/Waterfall/.NET/Waterfall/Waterfall/Waterfall.csproj b/Create and Edit Charts/Waterfall/.NET/Waterfall/Waterfall/Waterfall.csproj index ddbaf2ec..0f8e6126 100644 --- a/Create and Edit Charts/Waterfall/.NET/Waterfall/Waterfall/Waterfall.csproj +++ b/Create and Edit Charts/Waterfall/.NET/Waterfall/Waterfall/Waterfall.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Argument Separator.csproj b/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Argument Separator.csproj index 1a50e0c5..c09b92fc 100644 --- a/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Argument Separator.csproj +++ b/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Argument Separator.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Output/.gitkeep b/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Program.cs b/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Program.cs index 638a0e1d..d4774787 100644 --- a/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Program.cs +++ b/Create and Edit Formulas/Argument Separator/.NET/Argument Separator/Argument Separator/Program.cs @@ -20,20 +20,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Formula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Formula.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Calculated Column.csproj b/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Calculated Column.csproj index 601332ba..cabb0156 100644 --- a/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Calculated Column.csproj +++ b/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Calculated Column.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Output/.gitkeep b/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Program.cs b/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Program.cs index 3b91f530..a47666f5 100644 --- a/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Program.cs +++ b/Create and Edit Formulas/Calculated Column/.NET/Calculated Column/Calculated Column/Program.cs @@ -36,20 +36,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CalculatedColumn.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CalculatedColumn.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CalculatedColumn.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Calculated Value.csproj b/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Calculated Value.csproj index a8244650..ba7a8624 100644 --- a/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Calculated Value.csproj +++ b/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Calculated Value.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Output/.gitkeep b/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Program.cs b/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Program.cs index 8ab67177..568a3c8c 100644 --- a/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Program.cs +++ b/Create and Edit Formulas/Calculated Value/.NET/Calculated Value/Calculated Value/Program.cs @@ -33,20 +33,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Formula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Formula.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Calculation Modes.csproj b/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Calculation Modes.csproj index f219182b..7c456fa0 100644 --- a/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Calculation Modes.csproj +++ b/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Calculation Modes.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Output/.gitkeep b/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Program.cs b/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Program.cs index 3fb5dc5d..41cc8dfc 100644 --- a/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Program.cs +++ b/Create and Edit Formulas/Calculation Modes/.NET/Calculation Modes/Calculation Modes/Program.cs @@ -19,20 +19,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CalculationMode.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CalculationMode.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CalculationMode.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Cross Sheet Formula.csproj b/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Cross Sheet Formula.csproj index 07c0343b..333ed17a 100644 --- a/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Cross Sheet Formula.csproj +++ b/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Cross Sheet Formula.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Output/.gitkeep b/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Program.cs b/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Program.cs index 658a4006..d1e902d6 100644 --- a/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Program.cs +++ b/Create and Edit Formulas/Cross Sheet Formula/.NET/Cross Sheet Formula/Cross Sheet Formula/Program.cs @@ -25,20 +25,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Formula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Formula.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Delete Named Range/.NET/Delete Named Range/Delete Named Range/Delete Named Range.csproj b/Create and Edit Formulas/Delete Named Range/.NET/Delete Named Range/Delete Named Range/Delete Named Range.csproj index e14272ea..cb9dda90 100644 --- a/Create and Edit Formulas/Delete Named Range/.NET/Delete Named Range/Delete Named Range/Delete Named Range.csproj +++ b/Create and Edit Formulas/Delete Named Range/.NET/Delete Named Range/Delete Named Range/Delete Named Range.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Formulas/Delete Named Range/.NET/Delete Named Range/Delete Named Range/Program.cs b/Create and Edit Formulas/Delete Named Range/.NET/Delete Named Range/Delete Named Range/Program.cs index 52be73d5..85fe8d23 100644 --- a/Create and Edit Formulas/Delete Named Range/.NET/Delete Named Range/Delete Named Range/Program.cs +++ b/Create and Edit Formulas/Delete Named Range/.NET/Delete Named Range/Delete Named Range/Program.cs @@ -26,7 +26,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("DeleteNamedRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/DeleteNamedRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -37,3 +37,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/External Formula.csproj b/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/External Formula.csproj index 49e6b254..26d5e855 100644 --- a/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/External Formula.csproj +++ b/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/External Formula.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/Output/.gitkeep b/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/Program.cs b/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/Program.cs index a7140aa7..da93d327 100644 --- a/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/Program.cs +++ b/Create and Edit Formulas/External Formula/.NET/External Formula/External Formula/Program.cs @@ -19,20 +19,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ExternalFormula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ExternalFormula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ExternalFormula.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Formula Array.csproj b/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Formula Array.csproj index add2cb83..b2f647bb 100644 --- a/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Formula Array.csproj +++ b/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Formula Array.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Output/.gitkeep b/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Program.cs b/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Program.cs index bed34fac..c370cda7 100644 --- a/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Program.cs +++ b/Create and Edit Formulas/Formula Array/.NET/Formula Array/Formula Array/Program.cs @@ -27,20 +27,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Formula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Formula.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Ignore Error/.NET/Ignore Error/Ignore Error/Ignore Error.csproj b/Create and Edit Formulas/Ignore Error/.NET/Ignore Error/Ignore Error/Ignore Error.csproj index 6040f474..2d38f877 100644 --- a/Create and Edit Formulas/Ignore Error/.NET/Ignore Error/Ignore Error/Ignore Error.csproj +++ b/Create and Edit Formulas/Ignore Error/.NET/Ignore Error/Ignore Error/Ignore Error.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Formulas/Ignore Error/.NET/Ignore Error/Ignore Error/Program.cs b/Create and Edit Formulas/Ignore Error/.NET/Ignore Error/Ignore Error/Program.cs index c4796f16..5503cdcc 100644 --- a/Create and Edit Formulas/Ignore Error/.NET/Ignore Error/Ignore Error/Program.cs +++ b/Create and Edit Formulas/Ignore Error/.NET/Ignore Error/Ignore Error/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FormulaAuditing.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FormulaAuditing.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -31,3 +31,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Incremental Formula.csproj b/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Incremental Formula.csproj index c3de5384..05bd44dd 100644 --- a/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Incremental Formula.csproj +++ b/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Incremental Formula.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Output/.gitkeep b/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Program.cs b/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Program.cs index 66e13220..01ba6643 100644 --- a/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Program.cs +++ b/Create and Edit Formulas/Incremental Formula/.NET/Incremental Formula/Incremental Formula/Program.cs @@ -23,20 +23,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("IncrementalFormula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/IncrementalFormula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("IncrementalFormula.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Iteration.csproj b/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Iteration.csproj index 7eea359f..26fb8c24 100644 --- a/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Iteration.csproj +++ b/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Iteration.csproj @@ -1,4 +1,4 @@ - + Exe @@ -9,4 +9,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Output/.gitkeep b/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Program.cs b/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Program.cs index 060c9e3d..5a153bd5 100644 --- a/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Program.cs +++ b/Create and Edit Formulas/Iteration/.NET/Iteration/Iteration/Program.cs @@ -25,20 +25,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Iteration.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Iteration.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Iteration.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Named Range.csproj b/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Named Range.csproj index f29abc67..bd93f61b 100644 --- a/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Named Range.csproj +++ b/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Named Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Output/.gitkeep b/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Program.cs b/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Program.cs index 18d0ad29..cc41c69d 100644 --- a/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Program.cs +++ b/Create and Edit Formulas/Named Range/.NET/Named Range/Named Range/Program.cs @@ -29,20 +29,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Formula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Formula.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Output/.gitkeep b/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Program.cs b/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Program.cs index 4e827be3..723d9185 100644 --- a/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Program.cs +++ b/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Program.cs @@ -25,20 +25,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Formula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Formula.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Set Formula.csproj b/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Set Formula.csproj index 5f425d68..0d378bb5 100644 --- a/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Set Formula.csproj +++ b/Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/Set Formula.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Formulas/Types of Calculated Value/.NET/Types of Calculated Value/Types of Calculated Value/Program.cs b/Create and Edit Formulas/Types of Calculated Value/.NET/Types of Calculated Value/Types of Calculated Value/Program.cs index 33ff7ced..e70c1b42 100644 --- a/Create and Edit Formulas/Types of Calculated Value/.NET/Types of Calculated Value/Types of Calculated Value/Program.cs +++ b/Create and Edit Formulas/Types of Calculated Value/.NET/Types of Calculated Value/Types of Calculated Value/Program.cs @@ -44,7 +44,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Formula.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -55,3 +55,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Formulas/Types of Calculated Value/.NET/Types of Calculated Value/Types of Calculated Value/Types of Calculated Value.csproj b/Create and Edit Formulas/Types of Calculated Value/.NET/Types of Calculated Value/Types of Calculated Value/Types of Calculated Value.csproj index 7e9dee55..2d1b1eb2 100644 --- a/Create and Edit Formulas/Types of Calculated Value/.NET/Types of Calculated Value/Types of Calculated Value/Types of Calculated Value.csproj +++ b/Create and Edit Formulas/Types of Calculated Value/.NET/Types of Calculated Value/Types of Calculated Value/Types of Calculated Value.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Macros/Clear All Macros/.NET/Clear All Macros/Clear All Macros/Clear All Macros.csproj b/Create and Edit Macros/Clear All Macros/.NET/Clear All Macros/Clear All Macros/Clear All Macros.csproj index 77ff0399..571311b3 100644 --- a/Create and Edit Macros/Clear All Macros/.NET/Clear All Macros/Clear All Macros/Clear All Macros.csproj +++ b/Create and Edit Macros/Clear All Macros/.NET/Clear All Macros/Clear All Macros/Clear All Macros.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Macros/Clear All Macros/.NET/Clear All Macros/Clear All Macros/Program.cs b/Create and Edit Macros/Clear All Macros/.NET/Clear All Macros/Clear All Macros/Program.cs index 95869e9d..650a2e26 100644 --- a/Create and Edit Macros/Clear All Macros/.NET/Clear All Macros/Clear All Macros/Program.cs +++ b/Create and Edit Macros/Clear All Macros/.NET/Clear All Macros/Clear All Macros/Program.cs @@ -27,7 +27,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ClearAllMacro.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ClearAllMacro.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion @@ -39,3 +39,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Create Macro as Class.csproj b/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Create Macro as Class.csproj index 53bbd3a4..695eaa29 100644 --- a/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Create Macro as Class.csproj +++ b/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Create Macro as Class.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Output/.gitkeep b/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Program.cs b/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Program.cs index 84a208d9..5cd0bdad 100644 --- a/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Program.cs +++ b/Create and Edit Macros/Create Macro as Class/.NET/Create Macro as Class/Create Macro as Class/Program.cs @@ -34,21 +34,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MacroAsClass.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MacroAsClass.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("MacroAsClass.xlsm") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Create Macro as Document.csproj b/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Create Macro as Document.csproj index 05d708c0..3b6cccc5 100644 --- a/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Create Macro as Document.csproj +++ b/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Create Macro as Document.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Output/.gitkeep b/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Program.cs b/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Program.cs index c9c943d5..170c3418 100644 --- a/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Program.cs +++ b/Create and Edit Macros/Create Macro as Document/.NET/Create Macro as Document/Create Macro as Document/Program.cs @@ -30,20 +30,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MacroAsDocument.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MacroAsDocument.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("MacroAsDocument.xlsm") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Macros/Create Macro as MSForm/.NET/Create Macro as MSForm/Create Macro as MSForm/Create Macro as MSForm.csproj b/Create and Edit Macros/Create Macro as MSForm/.NET/Create Macro as MSForm/Create Macro as MSForm/Create Macro as MSForm.csproj index 57d2e43f..26e8ce22 100644 --- a/Create and Edit Macros/Create Macro as MSForm/.NET/Create Macro as MSForm/Create Macro as MSForm/Create Macro as MSForm.csproj +++ b/Create and Edit Macros/Create Macro as MSForm/.NET/Create Macro as MSForm/Create Macro as MSForm/Create Macro as MSForm.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Macros/Create Macro as MSForm/.NET/Create Macro as MSForm/Create Macro as MSForm/Program.cs b/Create and Edit Macros/Create Macro as MSForm/.NET/Create Macro as MSForm/Create Macro as MSForm/Program.cs index 67684791..f54f0025 100644 --- a/Create and Edit Macros/Create Macro as MSForm/.NET/Create Macro as MSForm/Create Macro as MSForm/Program.cs +++ b/Create and Edit Macros/Create Macro as MSForm/.NET/Create Macro as MSForm/Create Macro as MSForm/Program.cs @@ -42,7 +42,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MacroAsMSForm.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MacroAsMSForm.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion @@ -54,3 +54,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Create Macro as StdModule.csproj b/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Create Macro as StdModule.csproj index c482be8c..993b63e7 100644 --- a/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Create Macro as StdModule.csproj +++ b/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Create Macro as StdModule.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Output/.gitkeep b/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Program.cs b/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Program.cs index c9d80429..4e189660 100644 --- a/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Program.cs +++ b/Create and Edit Macros/Create Macro as StdModule/.NET/Create Macro as StdModule/Create Macro as StdModule/Program.cs @@ -30,20 +30,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MacroAsStdModule.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MacroAsStdModule.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("MacroAsStdModule.xlsm") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Macros/Edit Macro/.NET/Edit Macro/Edit Macro/Edit Macro.csproj b/Create and Edit Macros/Edit Macro/.NET/Edit Macro/Edit Macro/Edit Macro.csproj index 00a09f76..fa0c55f2 100644 --- a/Create and Edit Macros/Edit Macro/.NET/Edit Macro/Edit Macro/Edit Macro.csproj +++ b/Create and Edit Macros/Edit Macro/.NET/Edit Macro/Edit Macro/Edit Macro.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Macros/Edit Macro/.NET/Edit Macro/Edit Macro/Program.cs b/Create and Edit Macros/Edit Macro/.NET/Edit Macro/Edit Macro/Program.cs index ddefd5fe..dcfee5f2 100644 --- a/Create and Edit Macros/Edit Macro/.NET/Edit Macro/Edit Macro/Program.cs +++ b/Create and Edit Macros/Edit Macro/.NET/Edit Macro/Edit Macro/Program.cs @@ -33,7 +33,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("EditMacro.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/EditMacro.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion @@ -45,3 +45,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Macros/Remove Macro with Index/.NET/Remove Macro with Index/Remove Macro with Index/Program.cs b/Create and Edit Macros/Remove Macro with Index/.NET/Remove Macro with Index/Remove Macro with Index/Program.cs index 3c96b18a..1da715e9 100644 --- a/Create and Edit Macros/Remove Macro with Index/.NET/Remove Macro with Index/Remove Macro with Index/Program.cs +++ b/Create and Edit Macros/Remove Macro with Index/.NET/Remove Macro with Index/Remove Macro with Index/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveMacroWithIndex.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveMacroWithIndex.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion @@ -40,3 +40,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Macros/Remove Macro with Index/.NET/Remove Macro with Index/Remove Macro with Index/Remove Macro with Index.csproj b/Create and Edit Macros/Remove Macro with Index/.NET/Remove Macro with Index/Remove Macro with Index/Remove Macro with Index.csproj index eab24ebb..97da9718 100644 --- a/Create and Edit Macros/Remove Macro with Index/.NET/Remove Macro with Index/Remove Macro with Index/Remove Macro with Index.csproj +++ b/Create and Edit Macros/Remove Macro with Index/.NET/Remove Macro with Index/Remove Macro with Index/Remove Macro with Index.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Macros/Remove Macro with Name/.NET/Remove Macro with Name/Remove Macro with Name/Program.cs b/Create and Edit Macros/Remove Macro with Name/.NET/Remove Macro with Name/Remove Macro with Name/Program.cs index b6756c52..9813e6dc 100644 --- a/Create and Edit Macros/Remove Macro with Name/.NET/Remove Macro with Name/Remove Macro with Name/Program.cs +++ b/Create and Edit Macros/Remove Macro with Name/.NET/Remove Macro with Name/Remove Macro with Name/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveMacroWithName.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveMacroWithName.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion @@ -40,3 +40,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Macros/Remove Macro with Name/.NET/Remove Macro with Name/Remove Macro with Name/Remove Macro with Name.csproj b/Create and Edit Macros/Remove Macro with Name/.NET/Remove Macro with Name/Remove Macro with Name/Remove Macro with Name.csproj index 23a606bf..1bfb87bd 100644 --- a/Create and Edit Macros/Remove Macro with Name/.NET/Remove Macro with Name/Remove Macro with Name/Remove Macro with Name.csproj +++ b/Create and Edit Macros/Remove Macro with Name/.NET/Remove Macro with Name/Remove Macro with Name/Remove Macro with Name.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Output/.gitkeep b/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Program.cs b/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Program.cs index d06e78e2..c10c6f5d 100644 --- a/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Program.cs +++ b/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Program.cs @@ -29,20 +29,17 @@ static void Main(string[] args) #region Save //Saving the workbook Macro in XLTM format - FileStream outputStream = new FileStream("SaveAsStream.xltm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SaveAsStream.xltm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacroTemplate); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("SaveAsStream.xltm") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Save as Stream.csproj b/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Save as Stream.csproj index 2d9c41d8..b8f13da6 100644 --- a/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Save as Stream.csproj +++ b/Create and Edit Macros/Save as Stream/.NET/Save as Stream/Save as Stream/Save as Stream.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Output/.gitkeep b/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Program.cs b/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Program.cs index e06cbb63..6e64ef15 100644 --- a/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Program.cs +++ b/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Program.cs @@ -37,20 +37,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ShapesWithMacro.xlsm", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ShapesWithMacro.xlsm"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsMacro); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ShapesWithMacro.xlsm") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Shapes with Macro.csproj b/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Shapes with Macro.csproj index 4f3fa119..d1c06264 100644 --- a/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Shapes with Macro.csproj +++ b/Create and Edit Macros/Shapes with Macro/.NET/Shapes with Macro/Shapes with Macro/Shapes with Macro.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Macros/Skip Macro and Save/.NET/Skip Macro and Save/Skip Macro and Save/Program.cs b/Create and Edit Macros/Skip Macro and Save/.NET/Skip Macro and Save/Skip Macro and Save/Program.cs index 46930aa2..e14fa0d2 100644 --- a/Create and Edit Macros/Skip Macro and Save/.NET/Skip Macro and Save/Skip Macro and Save/Program.cs +++ b/Create and Edit Macros/Skip Macro and Save/.NET/Skip Macro and Save/Skip Macro and Save/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SkipMacroAndSave.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SkipMacroAndSave.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsXLS); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Macros/Skip Macro and Save/.NET/Skip Macro and Save/Skip Macro and Save/Skip Macro and Save.csproj b/Create and Edit Macros/Skip Macro and Save/.NET/Skip Macro and Save/Skip Macro and Save/Skip Macro and Save.csproj index b228d6b6..5b8c0fbc 100644 --- a/Create and Edit Macros/Skip Macro and Save/.NET/Skip Macro and Save/Skip Macro and Save/Skip Macro and Save.csproj +++ b/Create and Edit Macros/Skip Macro and Save/.NET/Skip Macro and Save/Skip Macro and Save/Skip Macro and Save.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Table/Add Total Row/.NET/Add Total Row/Add Total Row/Add Total Row.csproj b/Create and Edit Table/Add Total Row/.NET/Add Total Row/Add Total Row/Add Total Row.csproj index 481bdc80..a993b2d4 100644 --- a/Create and Edit Table/Add Total Row/.NET/Add Total Row/Add Total Row/Add Total Row.csproj +++ b/Create and Edit Table/Add Total Row/.NET/Add Total Row/Add Total Row/Add Total Row.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Table/Add Total Row/.NET/Add Total Row/Add Total Row/Program.cs b/Create and Edit Table/Add Total Row/.NET/Add Total Row/Add Total Row/Program.cs index fb2bd2a7..c8d471b2 100644 --- a/Create and Edit Table/Add Total Row/.NET/Add Total Row/Add Total Row/Program.cs +++ b/Create and Edit Table/Add Total Row/.NET/Add Total Row/Add Total Row/Program.cs @@ -27,7 +27,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AddTotalRow.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AddTotalRow.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -39,3 +39,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Apply Custom Style.csproj b/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Apply Custom Style.csproj index cb2e1d3f..83b49bd0 100644 --- a/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Apply Custom Style.csproj +++ b/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Apply Custom Style.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Output/.gitkeep b/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Program.cs b/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Program.cs index d293c303..5a8e1916 100644 --- a/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Program.cs +++ b/Create and Edit Table/Apply Custom Style/.NET/Apply Custom Style/Apply Custom Style/Program.cs @@ -100,20 +100,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CustomTableStyle.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CustomTableStyle.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CustomTableStyle.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Create and Edit Table/Create Table/.NET/Create Table/Create Table/Create Table.csproj b/Create and Edit Table/Create Table/.NET/Create Table/Create Table/Create Table.csproj index acdbcd71..6d8ad0a5 100644 --- a/Create and Edit Table/Create Table/.NET/Create Table/Create Table/Create Table.csproj +++ b/Create and Edit Table/Create Table/.NET/Create Table/Create Table/Create Table.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Table/Create Table/.NET/Create Table/Create Table/Program.cs b/Create and Edit Table/Create Table/.NET/Create Table/Create Table/Program.cs index bb231c31..5478911c 100644 --- a/Create and Edit Table/Create Table/.NET/Create Table/Create Table/Program.cs +++ b/Create and Edit Table/Create Table/.NET/Create Table/Create Table/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CreateTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CreateTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Table/ExcelTable/ExcelTable/ExcelTable.csproj b/Create and Edit Table/ExcelTable/ExcelTable/ExcelTable.csproj index 4af44a6b..be369f50 100644 --- a/Create and Edit Table/ExcelTable/ExcelTable/ExcelTable.csproj +++ b/Create and Edit Table/ExcelTable/ExcelTable/ExcelTable.csproj @@ -19,7 +19,19 @@ Always + + Always + + + + + + + + + + diff --git a/Create and Edit Table/ExcelTable/ExcelTable/Program.cs b/Create and Edit Table/ExcelTable/ExcelTable/Program.cs index c2d41fb1..b9013522 100644 --- a/Create and Edit Table/ExcelTable/ExcelTable/Program.cs +++ b/Create and Edit Table/ExcelTable/ExcelTable/Program.cs @@ -52,3 +52,7 @@ public void AddExcelTable(string tableName, IRange tableRange) } } + + + + diff --git a/Create and Edit Table/Format Table/.NET/Format Table/Format Table/Format Table.csproj b/Create and Edit Table/Format Table/.NET/Format Table/Format Table/Format Table.csproj index dba13cd3..e207765b 100644 --- a/Create and Edit Table/Format Table/.NET/Format Table/Format Table/Format Table.csproj +++ b/Create and Edit Table/Format Table/.NET/Format Table/Format Table/Format Table.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Table/Format Table/.NET/Format Table/Format Table/Program.cs b/Create and Edit Table/Format Table/.NET/Format Table/Format Table/Program.cs index a1e3a538..301634b4 100644 --- a/Create and Edit Table/Format Table/.NET/Format Table/Format Table/Program.cs +++ b/Create and Edit Table/Format Table/.NET/Format Table/Format Table/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FormatTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FormatTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -36,3 +36,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Table/Insert Column/.NET/Insert Column/Insert Column/Insert Column.csproj b/Create and Edit Table/Insert Column/.NET/Insert Column/Insert Column/Insert Column.csproj index e2b30e2a..86fbceb0 100644 --- a/Create and Edit Table/Insert Column/.NET/Insert Column/Insert Column/Insert Column.csproj +++ b/Create and Edit Table/Insert Column/.NET/Insert Column/Insert Column/Insert Column.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Table/Insert Column/.NET/Insert Column/Insert Column/Program.cs b/Create and Edit Table/Insert Column/.NET/Insert Column/Insert Column/Program.cs index 18b2c475..3aca0bf2 100644 --- a/Create and Edit Table/Insert Column/.NET/Insert Column/Insert Column/Program.cs +++ b/Create and Edit Table/Insert Column/.NET/Insert Column/Insert Column/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("InsertTableColumn.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/InsertTableColumn.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -36,3 +36,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Table/Read Table/.NET/Read Table/Read Table/Program.cs b/Create and Edit Table/Read Table/.NET/Read Table/Read Table/Program.cs index c8e7dd0a..8b47c797 100644 --- a/Create and Edit Table/Read Table/.NET/Read Table/Read Table/Program.cs +++ b/Create and Edit Table/Read Table/.NET/Read Table/Read Table/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ReadTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ReadTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -36,3 +36,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Table/Read Table/.NET/Read Table/Read Table/Read Table.csproj b/Create and Edit Table/Read Table/.NET/Read Table/Read Table/Read Table.csproj index 5edee9cd..be73fdc5 100644 --- a/Create and Edit Table/Read Table/.NET/Read Table/Read Table/Read Table.csproj +++ b/Create and Edit Table/Read Table/.NET/Read Table/Read Table/Read Table.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Table/Remove Column/.NET/Remove Column/Remove Column/Program.cs b/Create and Edit Table/Remove Column/.NET/Remove Column/Remove Column/Program.cs index d7a12363..c5ecb59a 100644 --- a/Create and Edit Table/Remove Column/.NET/Remove Column/Remove Column/Program.cs +++ b/Create and Edit Table/Remove Column/.NET/Remove Column/Remove Column/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveTableColumn.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveTableColumn.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -36,3 +36,7 @@ static void Main(string[] args) } } + + + + diff --git a/Create and Edit Table/Remove Column/.NET/Remove Column/Remove Column/Remove Column.csproj b/Create and Edit Table/Remove Column/.NET/Remove Column/Remove Column/Remove Column.csproj index d81bfd5d..201fb41d 100644 --- a/Create and Edit Table/Remove Column/.NET/Remove Column/Remove Column/Remove Column.csproj +++ b/Create and Edit Table/Remove Column/.NET/Remove Column/Remove Column/Remove Column.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Create and Edit Table/Table To Range/.NET/Table To Range/Table To Range/Program.cs b/Create and Edit Table/Table To Range/.NET/Table To Range/Table To Range/Program.cs index 5bd4f04f..95b72215 100644 --- a/Create and Edit Table/Table To Range/.NET/Table To Range/Table To Range/Program.cs +++ b/Create and Edit Table/Table To Range/.NET/Table To Range/Table To Range/Program.cs @@ -48,10 +48,14 @@ static void Main(string[] args) worksheet.UsedRange.BorderNone(); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); } } } } + + + + diff --git a/Create and Edit Table/Table To Range/.NET/Table To Range/Table To Range/Table To Range.csproj b/Create and Edit Table/Table To Range/.NET/Table To Range/Table To Range/Table To Range.csproj index 340031da..40683a71 100644 --- a/Create and Edit Table/Table To Range/.NET/Table To Range/Table To Range/Table To Range.csproj +++ b/Create and Edit Table/Table To Range/.NET/Table To Range/Table To Range/Table To Range.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Custom XML Support/Add Custom XML/.NET/Add Custom XML/Add Custom XML/Add Custom XML.csproj b/Custom XML Support/Add Custom XML/.NET/Add Custom XML/Add Custom XML/Add Custom XML.csproj index 263e9c9e..802177a6 100644 --- a/Custom XML Support/Add Custom XML/.NET/Add Custom XML/Add Custom XML/Add Custom XML.csproj +++ b/Custom XML Support/Add Custom XML/.NET/Add Custom XML/Add Custom XML/Add Custom XML.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Custom XML Support/Add Custom XML/.NET/Add Custom XML/Add Custom XML/Program.cs b/Custom XML Support/Add Custom XML/.NET/Add Custom XML/Add Custom XML/Program.cs index 147b7a5f..5615675b 100644 --- a/Custom XML Support/Add Custom XML/.NET/Add Custom XML/Add Custom XML/Program.cs +++ b/Custom XML Support/Add Custom XML/.NET/Add Custom XML/Add Custom XML/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CreateCustomXML.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CreateCustomXML.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -37,3 +37,7 @@ static void Main(string[] args) } } + + + + diff --git a/Custom XML Support/Read Custom XML/.NET/Read Custom XML/Read Custom XML/Program.cs b/Custom XML Support/Read Custom XML/.NET/Read Custom XML/Read Custom XML/Program.cs index 4ddc1b30..b411646f 100644 --- a/Custom XML Support/Read Custom XML/.NET/Read Custom XML/Read Custom XML/Program.cs +++ b/Custom XML Support/Read Custom XML/.NET/Read Custom XML/Read Custom XML/Program.cs @@ -26,7 +26,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ReadXml.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ReadXml.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -38,3 +38,7 @@ static void Main(string[] args) } } + + + + diff --git a/Custom XML Support/Read Custom XML/.NET/Read Custom XML/Read Custom XML/Read Custom XML.csproj b/Custom XML Support/Read Custom XML/.NET/Read Custom XML/Read Custom XML/Read Custom XML.csproj index 33171645..579f6fe6 100644 --- a/Custom XML Support/Read Custom XML/.NET/Read Custom XML/Read Custom XML/Read Custom XML.csproj +++ b/Custom XML Support/Read Custom XML/.NET/Read Custom XML/Read Custom XML/Read Custom XML.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Data Validation/DataValidation/DataValidation/DataValidation.csproj b/Data Validation/DataValidation/DataValidation/DataValidation.csproj index f88e1fff..819b14e2 100644 --- a/Data Validation/DataValidation/DataValidation/DataValidation.csproj +++ b/Data Validation/DataValidation/DataValidation/DataValidation.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Data Validation/DataValidation/DataValidation/Output/.gitkeep b/Data Validation/DataValidation/DataValidation/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Data Validation/DataValidation/DataValidation/Program.cs b/Data Validation/DataValidation/DataValidation/Program.cs index 352b7444..caf067e3 100644 --- a/Data Validation/DataValidation/DataValidation/Program.cs +++ b/Data Validation/DataValidation/DataValidation/Program.cs @@ -95,7 +95,10 @@ sheet.UsedRange.AutofitRows(); //Saving the workbook - FileStream outputStream = new FileStream("DataValidation.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/DataValidation.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); outputStream.Dispose(); -} \ No newline at end of file +} + + + diff --git a/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Date Validation.csproj b/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Date Validation.csproj index 2cb051d8..a7532d85 100644 --- a/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Date Validation.csproj +++ b/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Date Validation.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Output/.gitkeep b/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Program.cs b/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Program.cs index 3df6bc53..6dfef99f 100644 --- a/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Program.cs +++ b/Data Validation/Date Validation/.NET/Date Validation/Date Validation/Program.cs @@ -33,20 +33,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("DateValidation.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/DateValidation.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("DateValidation.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Data Validation/List Validation/.NET/List Validation/List Validation/List Validation.csproj b/Data Validation/List Validation/.NET/List Validation/List Validation/List Validation.csproj index bc95d8ec..13bda5a9 100644 --- a/Data Validation/List Validation/.NET/List Validation/List Validation/List Validation.csproj +++ b/Data Validation/List Validation/.NET/List Validation/List Validation/List Validation.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Data Validation/List Validation/.NET/List Validation/List Validation/Output/.gitkeep b/Data Validation/List Validation/.NET/List Validation/List Validation/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Data Validation/List Validation/.NET/List Validation/List Validation/Program.cs b/Data Validation/List Validation/.NET/List Validation/List Validation/Program.cs index baa6b7d8..8fab3ef0 100644 --- a/Data Validation/List Validation/.NET/List Validation/List Validation/Program.cs +++ b/Data Validation/List Validation/.NET/List Validation/List Validation/Program.cs @@ -29,20 +29,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ListValidation.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ListValidation.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ListValidation.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Number Validation.csproj b/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Number Validation.csproj index a2169bf0..581baa3f 100644 --- a/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Number Validation.csproj +++ b/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Number Validation.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Output/.gitkeep b/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Program.cs b/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Program.cs index 9321f45d..69cdfb3a 100644 --- a/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Program.cs +++ b/Data Validation/Number Validation/.NET/Number Validation/Number Validation/Program.cs @@ -32,20 +32,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("NumberValidation.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/NumberValidation.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("NumberValidation.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Output/.gitkeep b/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Program.cs b/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Program.cs index ea3ed32d..1ba8e380 100644 --- a/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Program.cs +++ b/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Program.cs @@ -32,20 +32,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("TextLengthValidation.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/TextLengthValidation.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("TextLengthValidation.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Text Length Validation.csproj b/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Text Length Validation.csproj index 91ad6ced..682ebb6a 100644 --- a/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Text Length Validation.csproj +++ b/Data Validation/Text Length Validation/.NET/Text Length Validation/Text Length Validation/Text Length Validation.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Output/.gitkeep b/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Program.cs b/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Program.cs index 337f8218..69563554 100644 --- a/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Program.cs +++ b/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Program.cs @@ -32,20 +32,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("TimeValidation.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/TimeValidation.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("TimeValidation.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Time Validation.csproj b/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Time Validation.csproj index 54ffd03b..8660af37 100644 --- a/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Time Validation.csproj +++ b/Data Validation/Time Validation/.NET/Time Validation/Time Validation/Time Validation.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Alignment.csproj b/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Alignment.csproj index 7eea359f..26fb8c24 100644 --- a/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Alignment.csproj +++ b/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Alignment.csproj @@ -1,4 +1,4 @@ - + Exe @@ -9,4 +9,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Output/.gitkeep b/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Program.cs b/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Program.cs index b90b58c9..ea4a7d45 100644 --- a/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Program.cs +++ b/Editing Excel cell-styles/Alignment/.NET/Alignment/Alignment/Program.cs @@ -60,20 +60,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Alignment.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Alignment.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Alignment.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/AutoFit Rows and Columns.csproj b/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/AutoFit Rows and Columns.csproj index e8c74f73..946a2144 100644 --- a/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/AutoFit Rows and Columns.csproj +++ b/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/AutoFit Rows and Columns.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/Output/.gitkeep b/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/Program.cs b/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/Program.cs index 0adb732e..2b529504 100644 --- a/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/Program.cs +++ b/Editing Excel cell-styles/AutoFit Rows and Columns/.NET/AutoFit Rows and Columns/AutoFit Rows and Columns/Program.cs @@ -29,20 +29,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AutoFit.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AutoFit.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("AutoFit.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Border Settings.csproj b/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Border Settings.csproj index af0fc548..2bcbb08c 100644 --- a/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Border Settings.csproj +++ b/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Border Settings.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Output/.gitkeep b/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Program.cs b/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Program.cs index 132fc75c..c6e9847e 100644 --- a/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Program.cs +++ b/Editing Excel cell-styles/Border Settings/.NET/Border Settings/Border Settings/Program.cs @@ -49,20 +49,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("BorderSettings.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/BorderSettings.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("BorderSettings.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Color Settings.csproj b/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Color Settings.csproj index 3c7a5b63..dfd45718 100644 --- a/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Color Settings.csproj +++ b/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Color Settings.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Output/.gitkeep b/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Program.cs b/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Program.cs index fd7e0be7..12268054 100644 --- a/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Program.cs +++ b/Editing Excel cell-styles/Color Settings/.NET/Color Settings/Color Settings/Program.cs @@ -27,20 +27,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ColorSettings.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ColorSettings.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ColorSettings.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Create Style.csproj b/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Create Style.csproj index af03ee5c..615a0fa7 100644 --- a/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Create Style.csproj +++ b/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Create Style.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Output/.gitkeep b/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Program.cs b/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Program.cs index 8f83bd59..ef410f32 100644 --- a/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Program.cs +++ b/Editing Excel cell-styles/Create Style/.NET/Create Style/Create Style/Program.cs @@ -25,20 +25,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CreateStyle.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CreateStyle.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CreateStyle.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Font Settings.csproj b/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Font Settings.csproj index ba0d56ce..a845ae5b 100644 --- a/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Font Settings.csproj +++ b/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Font Settings.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Output/.gitkeep b/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Program.cs b/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Program.cs index 06532fcf..f5ee0f64 100644 --- a/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Program.cs +++ b/Editing Excel cell-styles/Font Settings/.NET/Font Settings/Font Settings/Program.cs @@ -49,20 +49,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FontSettings.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FontSettings.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("FontSettings.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Global Style.csproj b/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Global Style.csproj index e8d109b1..54a25f00 100644 --- a/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Global Style.csproj +++ b/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Global Style.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Output/.gitkeep b/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Program.cs b/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Program.cs index 1031b59e..96daad7d 100644 --- a/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Program.cs +++ b/Editing Excel cell-styles/Global Style/.NET/Global Style/Global Style/Program.cs @@ -84,20 +84,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("GlobalStyle.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/GlobalStyle.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("GlobalStyle.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/HTML String Formatting.csproj b/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/HTML String Formatting.csproj index b7d079d1..bc4c67e3 100644 --- a/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/HTML String Formatting.csproj +++ b/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/HTML String Formatting.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/Output/.gitkeep b/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/Program.cs b/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/Program.cs index 2a831fe3..ea055f5c 100644 --- a/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/Program.cs +++ b/Editing Excel cell-styles/HTML String Formatting/.NET/HTML String Formatting/HTML String Formatting/Program.cs @@ -17,17 +17,14 @@ #region Save //Saving the workbook - FileStream outputStream = new FileStream("HTMLString.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HTMLString.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HTMLString.xlsx") - { - UseShellExecute = true - }; - process.Start(); } + + + + diff --git a/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Hide Cell Content.csproj b/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Hide Cell Content.csproj index 7ca37fd9..8984c510 100644 --- a/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Hide Cell Content.csproj +++ b/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Hide Cell Content.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Output/.gitkeep b/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Program.cs b/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Program.cs index f11d1bf5..5321ccf6 100644 --- a/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Program.cs +++ b/Editing Excel cell-styles/Hide Cell Content/.NET/Hide Cell Content/Hide Cell Content/Program.cs @@ -24,20 +24,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HideCellContent.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HideCellContent.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HideCellContent.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Merge and UnMerge.csproj b/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Merge and UnMerge.csproj index b3eaf125..8316e72e 100644 --- a/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Merge and UnMerge.csproj +++ b/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Merge and UnMerge.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Output/.gitkeep b/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Program.cs b/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Program.cs index 8b18db6e..e6ff227f 100644 --- a/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Program.cs +++ b/Editing Excel cell-styles/Merge and UnMerge/.NET/Merge and UnMerge/Merge and UnMerge/Program.cs @@ -27,20 +27,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MergeandUnMerge.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MergeandUnMerge.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("MergeandUnMerge.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Number Format.csproj b/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Number Format.csproj index 15591934..6b389917 100644 --- a/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Number Format.csproj +++ b/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Number Format.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Output/.gitkeep b/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Program.cs b/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Program.cs index 2f21ad9a..7322a913 100644 --- a/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Program.cs +++ b/Editing Excel cell-styles/Number Format/.NET/Number Format/Number Format/Program.cs @@ -85,20 +85,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("NumberFormat.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/NumberFormat.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("NumberFormat.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Output/.gitkeep b/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Program.cs b/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Program.cs index 8701aa11..d93dae4b 100644 --- a/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Program.cs +++ b/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Program.cs @@ -35,20 +35,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RichText.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RichText.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("RichText.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Rich Text.csproj b/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Rich Text.csproj index a6625c5e..153781fc 100644 --- a/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Rich Text.csproj +++ b/Editing Excel cell-styles/Rich Text/.NET/Rich Text/Rich Text/Rich Text.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Output/.gitkeep b/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Program.cs b/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Program.cs index 29f48d84..3f6408da 100644 --- a/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Program.cs +++ b/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Program.cs @@ -29,20 +29,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RowColumnStyle.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RowColumnStyle.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("RowColumnStyle.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Row and Column Style.csproj b/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Row and Column Style.csproj index a7c72260..4eee1ab8 100644 --- a/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Row and Column Style.csproj +++ b/Editing Excel cell-styles/Row and Column Style/.NET/Row and Column Style/Row and Column Style/Row and Column Style.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Output/.gitkeep b/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Program.cs b/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Program.cs index daf5b051..550a2696 100644 --- a/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Program.cs +++ b/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Program.cs @@ -25,20 +25,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("WrapText.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/WrapText.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("WrapText.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Wrap Text.csproj b/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Wrap Text.csproj index 7cf126c0..fdae5992 100644 --- a/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Wrap Text.csproj +++ b/Editing Excel cell-styles/Wrap Text/.NET/Wrap Text/Wrap Text/Wrap Text.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Access Cell or Range.csproj b/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Access Cell or Range.csproj index 29756105..4aff0779 100644 --- a/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Access Cell or Range.csproj +++ b/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Access Cell or Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Output/.gitkeep b/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Program.cs b/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Program.cs index f5508e63..ce59c64b 100644 --- a/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Program.cs +++ b/Editing Excel cells/Access Cell or Range/.NET/Access Cell or Range/Access Cell or Range/Program.cs @@ -35,20 +35,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AccessCellorRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AccessCellorRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("AccessCellorRange.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Access Discontinuous Range.csproj b/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Access Discontinuous Range.csproj index bd4c8083..d1a1e37e 100644 --- a/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Access Discontinuous Range.csproj +++ b/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Access Discontinuous Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Output/.gitkeep b/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Program.cs b/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Program.cs index 17615931..73d3013d 100644 --- a/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Program.cs +++ b/Editing Excel cells/Access Discontinuous Range/.NET/Access Discontinuous Range/Access Discontinuous Range/Program.cs @@ -28,20 +28,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("DiscontinuousRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/DiscontinuousRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("DiscontinuousRange.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Access Migrant Range.csproj b/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Access Migrant Range.csproj index 2dc17032..8f99bbb1 100644 --- a/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Access Migrant Range.csproj +++ b/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Access Migrant Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Output/.gitkeep b/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Program.cs b/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Program.cs index bf16c495..b24d7ada 100644 --- a/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Program.cs +++ b/Editing Excel cells/Access Migrant Range/.NET/Access Migrant Range/Access Migrant Range/Program.cs @@ -32,20 +32,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MigrantRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MigrantRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("MigrantRange.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Access Relative Range.csproj b/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Access Relative Range.csproj index 497a9219..2287675d 100644 --- a/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Access Relative Range.csproj +++ b/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Access Relative Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Output/.gitkeep b/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Program.cs b/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Program.cs index 634544be..54a6564f 100644 --- a/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Program.cs +++ b/Editing Excel cells/Access Relative Range/.NET/Access Relative Range/Access Relative Range/Program.cs @@ -35,20 +35,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AccessRelativeRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AccessRelativeRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("AccessRelativeRange.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Access Used Range.csproj b/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Access Used Range.csproj index b433e2ff..e9d6ad01 100644 --- a/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Access Used Range.csproj +++ b/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Access Used Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Output/.gitkeep b/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Program.cs b/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Program.cs index 29a604d7..51158a30 100644 --- a/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Program.cs +++ b/Editing Excel cells/Access Used Range/.NET/Access Used Range/Access Used Range/Program.cs @@ -26,21 +26,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AccessUsedRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AccessUsedRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("AccessUsedRange.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Accessing Filter/.NET/Accessing Filter/Accessing Filter/Program.cs b/Editing Excel cells/Accessing Filter/.NET/Accessing Filter/Accessing Filter/Program.cs index e39b2089..b13f6d1e 100644 --- a/Editing Excel cells/Accessing Filter/.NET/Accessing Filter/Accessing Filter/Program.cs +++ b/Editing Excel cells/Accessing Filter/.NET/Accessing Filter/Accessing Filter/Program.cs @@ -67,3 +67,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Advanced Filter.csproj b/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Advanced Filter.csproj index cbb00e2e..97119751 100644 --- a/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Advanced Filter.csproj +++ b/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Advanced Filter.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Output/.gitkeep b/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Program.cs b/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Program.cs index 1c7a48ad..f3e40afc 100644 --- a/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Program.cs +++ b/Editing Excel cells/Advanced Filter/.NET/Advanced Filter/Advanced Filter/Program.cs @@ -26,21 +26,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AdvancedFilter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AdvancedFilter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("AdvancedFilter.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Cell Color Filter.csproj b/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Cell Color Filter.csproj index f3e45606..0b55f281 100644 --- a/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Cell Color Filter.csproj +++ b/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Cell Color Filter.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Output/.gitkeep b/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Program.cs b/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Program.cs index b903caf4..accf91a5 100644 --- a/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Program.cs +++ b/Editing Excel cells/Cell Color Filter/.NET/Cell Color Filter/Cell Color Filter/Program.cs @@ -28,21 +28,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CellColorFilter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CellColorFilter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CellColorFilter.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Clear Content.csproj b/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Clear Content.csproj index c17e2e82..6d7bd310 100644 --- a/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Clear Content.csproj +++ b/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Clear Content.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Output/.gitkeep b/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Program.cs b/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Program.cs index 2e1c7ce8..165356d1 100644 --- a/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Program.cs +++ b/Editing Excel cells/Clear Content/.NET/Clear Content/Clear Content/Program.cs @@ -23,21 +23,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ClearContent.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ClearContent.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ClearContent.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Combination Filter.csproj b/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Combination Filter.csproj index 09cd983c..789e1f25 100644 --- a/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Combination Filter.csproj +++ b/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Combination Filter.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Output/.gitkeep b/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Program.cs b/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Program.cs index f99c66f1..40605f2a 100644 --- a/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Program.cs +++ b/Editing Excel cells/Combination Filter/.NET/Combination Filter/Combination Filter/Program.cs @@ -35,21 +35,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CombinationFilter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CombinationFilter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CombinationFilter.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Copy Range.csproj b/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Copy Range.csproj index 57c24e48..70fe1fba 100644 --- a/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Copy Range.csproj +++ b/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Copy Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Output/.gitkeep b/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Program.cs b/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Program.cs index 15963674..84a34504 100644 --- a/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Program.cs +++ b/Editing Excel cells/Copy Range/.NET/Copy Range/Copy Range/Program.cs @@ -24,21 +24,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CopyRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CopyRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CopyRange.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Custom Filter.csproj b/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Custom Filter.csproj index 8d6eb8c0..2cfb8c2f 100644 --- a/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Custom Filter.csproj +++ b/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Custom Filter.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Output/.gitkeep b/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Program.cs b/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Program.cs index 10ff8ff1..4b88f196 100644 --- a/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Program.cs +++ b/Editing Excel cells/Custom Filter/.NET/Custom Filter/Custom Filter/Program.cs @@ -33,21 +33,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CustomFilter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CustomFilter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CustomFilter.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Dynamic Filter.csproj b/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Dynamic Filter.csproj index 756d577d..c7d697e5 100644 --- a/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Dynamic Filter.csproj +++ b/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Dynamic Filter.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Output/.gitkeep b/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Program.cs b/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Program.cs index f01623a7..2f237919 100644 --- a/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Program.cs +++ b/Editing Excel cells/Dynamic Filter/.NET/Dynamic Filter/Dynamic Filter/Program.cs @@ -28,21 +28,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("DynamicFilter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/DynamicFilter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("DynamicFilter.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Filter/.NET/Filter/Filter/Filter.csproj b/Editing Excel cells/Filter/.NET/Filter/Filter/Filter.csproj index 7eea359f..26fb8c24 100644 --- a/Editing Excel cells/Filter/.NET/Filter/Filter/Filter.csproj +++ b/Editing Excel cells/Filter/.NET/Filter/Filter/Filter.csproj @@ -1,4 +1,4 @@ - + Exe @@ -9,4 +9,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Filter/.NET/Filter/Filter/Output/.gitkeep b/Editing Excel cells/Filter/.NET/Filter/Filter/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Filter/.NET/Filter/Filter/Program.cs b/Editing Excel cells/Filter/.NET/Filter/Filter/Program.cs index 69bd29cd..44a3530e 100644 --- a/Editing Excel cells/Filter/.NET/Filter/Filter/Program.cs +++ b/Editing Excel cells/Filter/.NET/Filter/Filter/Program.cs @@ -32,21 +32,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Filter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Filter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Filter.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Find/.NET/Find/Find/Find.csproj b/Editing Excel cells/Find/.NET/Find/Find/Find.csproj index 90c103e9..169318ce 100644 --- a/Editing Excel cells/Find/.NET/Find/Find/Find.csproj +++ b/Editing Excel cells/Find/.NET/Find/Find/Find.csproj @@ -15,7 +15,11 @@ Always + + Always + + diff --git a/Editing Excel cells/Find/.NET/Find/Find/Program.cs b/Editing Excel cells/Find/.NET/Find/Find/Program.cs index 6709edc7..52aa851e 100644 --- a/Editing Excel cells/Find/.NET/Find/Find/Program.cs +++ b/Editing Excel cells/Find/.NET/Find/Find/Program.cs @@ -43,3 +43,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Font Color Filter.csproj b/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Font Color Filter.csproj index a84f4e1a..1ece09c6 100644 --- a/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Font Color Filter.csproj +++ b/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Font Color Filter.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Output/.gitkeep b/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Program.cs b/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Program.cs index e77bf0ec..46be54c0 100644 --- a/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Program.cs +++ b/Editing Excel cells/Font Color Filter/.NET/Font Color Filter/Font Color Filter/Program.cs @@ -28,21 +28,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FontColorFilter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FontColorFilter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("FontColorFilter.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Hyperlinks.csproj b/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Hyperlinks.csproj index 7eea359f..26fb8c24 100644 --- a/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Hyperlinks.csproj +++ b/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Hyperlinks.csproj @@ -1,4 +1,4 @@ - + Exe @@ -9,4 +9,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Output/.gitkeep b/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Program.cs b/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Program.cs index 9c34c57f..db513343 100644 --- a/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Program.cs +++ b/Editing Excel cells/Hyperlinks/.NET/Hyperlinks/Hyperlinks/Program.cs @@ -51,20 +51,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Hyperlinks.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Hyperlinks.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Hyperlinks.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Icon Filter.csproj b/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Icon Filter.csproj index 82f33a4a..0cb7712a 100644 --- a/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Icon Filter.csproj +++ b/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Icon Filter.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Output/.gitkeep b/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Program.cs b/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Program.cs index 55c2354a..751b9583 100644 --- a/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Program.cs +++ b/Editing Excel cells/Icon Filter/.NET/Icon Filter/Icon Filter/Program.cs @@ -28,21 +28,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("IconFilter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/IconFilter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("IconFilter.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Modify Hyperlink.csproj b/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Modify Hyperlink.csproj index 6670576b..d81e644c 100644 --- a/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Modify Hyperlink.csproj +++ b/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Modify Hyperlink.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Output/.gitkeep b/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Program.cs b/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Program.cs index 7ead5b86..2ff1e283 100644 --- a/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Program.cs +++ b/Editing Excel cells/Modify Hyperlink/.NET/Modify Hyperlink/Modify Hyperlink/Program.cs @@ -23,21 +23,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ModifyHyperlink.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ModifyHyperlink.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ModifyHyperlink.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Modify Shape Hyperlink.csproj b/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Modify Shape Hyperlink.csproj index c6678e22..1658b5b1 100644 --- a/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Modify Shape Hyperlink.csproj +++ b/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Modify Shape Hyperlink.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Output/.gitkeep b/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Program.cs b/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Program.cs index 6c6f1e8e..00b7ec07 100644 --- a/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Program.cs +++ b/Editing Excel cells/Modify Shape Hyperlink/.NET/Modify Shape Hyperlink/Modify Shape Hyperlink/Program.cs @@ -27,21 +27,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ModifyShapeHyperlink.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ModifyShapeHyperlink.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ModifyShapeHyperlink.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Move Range.csproj b/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Move Range.csproj index 3ed41f93..20c4f980 100644 --- a/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Move Range.csproj +++ b/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Move Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Output/.gitkeep b/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Program.cs b/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Program.cs index 5f4da42f..d680ad45 100644 --- a/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Program.cs +++ b/Editing Excel cells/Move Range/.NET/Move Range/Move Range/Program.cs @@ -24,21 +24,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MoveRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MoveRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("MoveRange.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Output/.gitkeep b/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Paste As Link.csproj b/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Paste As Link.csproj index e63aa458..976ac3a4 100644 --- a/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Paste As Link.csproj +++ b/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Paste As Link.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Program.cs b/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Program.cs index e0d074f0..fbe155d3 100644 --- a/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Program.cs +++ b/Editing Excel cells/Paste As Link/.NET/Paste As Link/Paste As Link/Program.cs @@ -24,21 +24,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PasteAsLink.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PasteAsLink.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("PasteAsLink.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Precedent and Dependent Cells/.NET/Precedent and Dependent Cells/Precedent and Dependent Cells/Program.cs b/Editing Excel cells/Precedent and Dependent Cells/.NET/Precedent and Dependent Cells/Precedent and Dependent Cells/Program.cs index e7e8e1d0..6f080162 100644 --- a/Editing Excel cells/Precedent and Dependent Cells/.NET/Precedent and Dependent Cells/Precedent and Dependent Cells/Program.cs +++ b/Editing Excel cells/Precedent and Dependent Cells/.NET/Precedent and Dependent Cells/Precedent and Dependent Cells/Program.cs @@ -118,3 +118,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Output/.gitkeep b/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Program.cs b/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Program.cs index f1782114..3f21bbcf 100644 --- a/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Program.cs +++ b/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Program.cs @@ -22,21 +22,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveHyperlink.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveHyperlink.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("RemoveHyperlink.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Remove Hyperlink.csproj b/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Remove Hyperlink.csproj index 0c34b788..773fb4d9 100644 --- a/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Remove Hyperlink.csproj +++ b/Editing Excel cells/Remove Hyperlink/.NET/Remove Hyperlink/Remove Hyperlink/Remove Hyperlink.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Output/.gitkeep b/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Program.cs b/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Program.cs index b84502b1..d9b47c77 100644 --- a/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Program.cs +++ b/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Program.cs @@ -20,21 +20,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveShapeHyperlink.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveShapeHyperlink.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("RemoveShapeHyperlink.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Remove Shape Hyperlink.csproj b/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Remove Shape Hyperlink.csproj index 0d05147a..e8ee1fde 100644 --- a/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Remove Shape Hyperlink.csproj +++ b/Editing Excel cells/Remove Shape Hyperlink/.NET/Remove Shape Hyperlink/Remove Shape Hyperlink/Remove Shape Hyperlink.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Replace/.NET/Replace/Replace/Program.cs b/Editing Excel cells/Replace/.NET/Replace/Replace/Program.cs index e462fd1d..dfab003d 100644 --- a/Editing Excel cells/Replace/.NET/Replace/Replace/Program.cs +++ b/Editing Excel cells/Replace/.NET/Replace/Replace/Program.cs @@ -38,3 +38,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Editing Excel cells/Replace/.NET/Replace/Replace/Replace.csproj b/Editing Excel cells/Replace/.NET/Replace/Replace/Replace.csproj index 90c103e9..169318ce 100644 --- a/Editing Excel cells/Replace/.NET/Replace/Replace/Replace.csproj +++ b/Editing Excel cells/Replace/.NET/Replace/Replace/Replace.csproj @@ -15,7 +15,11 @@ Always + + Always + + diff --git a/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Output/.gitkeep b/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Program.cs b/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Program.cs index 743c79af..d7c3e9fb 100644 --- a/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Program.cs +++ b/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Program.cs @@ -33,20 +33,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ShapeHyperlink.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ShapeHyperlink.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ShapeHyperlink.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Shape Hyperlink.csproj b/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Shape Hyperlink.csproj index 1c2bb9c4..7eeacbad 100644 --- a/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Shape Hyperlink.csproj +++ b/Editing Excel cells/Shape Hyperlink/.NET/Shape Hyperlink/Shape Hyperlink/Shape Hyperlink.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Output/.gitkeep b/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Program.cs b/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Program.cs index 4d1c74e1..5d1b6bea 100644 --- a/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Program.cs +++ b/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Program.cs @@ -49,21 +49,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SortOnCellColor.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SortOnCellColor.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("SortOnCellColor.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Sort On Cell Color.csproj b/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Sort On Cell Color.csproj index b6985bc9..67ae88a1 100644 --- a/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Sort On Cell Color.csproj +++ b/Editing Excel cells/Sort On Cell Color/.NET/Sort On Cell Color/Sort On Cell Color/Sort On Cell Color.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Output/.gitkeep b/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Program.cs b/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Program.cs index 23cfe5c5..4c82d3e9 100644 --- a/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Program.cs +++ b/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Program.cs @@ -43,21 +43,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SortOnValues.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SortOnValues.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("SortOnValues.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Sort On Cell Values.csproj b/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Sort On Cell Values.csproj index 9fdcded8..d22ce6f5 100644 --- a/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Sort On Cell Values.csproj +++ b/Editing Excel cells/Sort On Cell Values/.NET/Sort On Cell Values/Sort On Cell Values/Sort On Cell Values.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Output/.gitkeep b/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Program.cs b/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Program.cs index 05c41a43..6b33e76d 100644 --- a/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Program.cs +++ b/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Program.cs @@ -49,21 +49,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SortOnFontColor.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SortOnFontColor.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("SortOnFontColor.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Sort on Font Color.csproj b/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Sort on Font Color.csproj index 1e9653e3..d6c266bd 100644 --- a/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Sort on Font Color.csproj +++ b/Editing Excel cells/Sort on Font Color/.NET/Sort on Font Color/Sort on Font Color/Sort on Font Color.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/AutoShapes.csproj b/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/AutoShapes.csproj index 7eea359f..26fb8c24 100644 --- a/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/AutoShapes.csproj +++ b/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/AutoShapes.csproj @@ -1,4 +1,4 @@ - + Exe @@ -9,4 +9,11 @@ + + + Always + + + + diff --git a/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/Output/.gitkeep b/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/Program.cs b/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/Program.cs index 0b7035fd..f7af256f 100644 --- a/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/Program.cs +++ b/Excel Shapes/AutoShapes/.NET/AutoShapes/AutoShapes/Program.cs @@ -35,20 +35,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AutoShapes.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AutoShapes.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("AutoShapes.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel Shapes/Check Box/.NET/Check Box/Check Box/Check Box.csproj b/Excel Shapes/Check Box/.NET/Check Box/Check Box/Check Box.csproj index cf8e6a25..fc0dfef2 100644 --- a/Excel Shapes/Check Box/.NET/Check Box/Check Box/Check Box.csproj +++ b/Excel Shapes/Check Box/.NET/Check Box/Check Box/Check Box.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel Shapes/Check Box/.NET/Check Box/Check Box/Output/.gitkeep b/Excel Shapes/Check Box/.NET/Check Box/Check Box/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel Shapes/Check Box/.NET/Check Box/Check Box/Program.cs b/Excel Shapes/Check Box/.NET/Check Box/Check Box/Program.cs index aedd76a0..3777579b 100644 --- a/Excel Shapes/Check Box/.NET/Check Box/Check Box/Program.cs +++ b/Excel Shapes/Check Box/.NET/Check Box/Check Box/Program.cs @@ -35,20 +35,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CheckBox.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CheckBox.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CheckBox.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Combo Box.csproj b/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Combo Box.csproj index bdd044d5..de55f20e 100644 --- a/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Combo Box.csproj +++ b/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Combo Box.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Output/.gitkeep b/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Program.cs b/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Program.cs index 9d8b02d2..3853f62b 100644 --- a/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Program.cs +++ b/Excel Shapes/Combo Box/.NET/Combo Box/Combo Box/Program.cs @@ -45,20 +45,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ComboBox.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ComboBox.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ComboBox.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel Shapes/Comment/.NET/Comment/Comment/Comment.csproj b/Excel Shapes/Comment/.NET/Comment/Comment/Comment.csproj index 7eea359f..26fb8c24 100644 --- a/Excel Shapes/Comment/.NET/Comment/Comment/Comment.csproj +++ b/Excel Shapes/Comment/.NET/Comment/Comment/Comment.csproj @@ -1,4 +1,4 @@ - + Exe @@ -9,4 +9,11 @@ + + + Always + + + + diff --git a/Excel Shapes/Comment/.NET/Comment/Comment/Output/.gitkeep b/Excel Shapes/Comment/.NET/Comment/Comment/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel Shapes/Comment/.NET/Comment/Comment/Program.cs b/Excel Shapes/Comment/.NET/Comment/Comment/Program.cs index 41573f21..85398111 100644 --- a/Excel Shapes/Comment/.NET/Comment/Comment/Program.cs +++ b/Excel Shapes/Comment/.NET/Comment/Comment/Program.cs @@ -30,20 +30,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Comment.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Comment.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Comment.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Fill Comment.csproj b/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Fill Comment.csproj index 885a77c0..f20f9c23 100644 --- a/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Fill Comment.csproj +++ b/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Fill Comment.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Output/.gitkeep b/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Program.cs b/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Program.cs index 5afb9314..97929514 100644 --- a/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Program.cs +++ b/Excel Shapes/Fill Comment/.NET/Fill Comment/Fill Comment/Program.cs @@ -29,20 +29,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FillComment.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FillComment.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("FillComment.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel Shapes/Group Shapes/.NET/Group Shapes/Group Shapes/Group Shapes.csproj b/Excel Shapes/Group Shapes/.NET/Group Shapes/Group Shapes/Group Shapes.csproj index 01d56aac..e0671960 100644 --- a/Excel Shapes/Group Shapes/.NET/Group Shapes/Group Shapes/Group Shapes.csproj +++ b/Excel Shapes/Group Shapes/.NET/Group Shapes/Group Shapes/Group Shapes.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel Shapes/Group Shapes/.NET/Group Shapes/Group Shapes/Program.cs b/Excel Shapes/Group Shapes/.NET/Group Shapes/Group Shapes/Program.cs index 7f691e93..a63861f3 100644 --- a/Excel Shapes/Group Shapes/.NET/Group Shapes/Group Shapes/Program.cs +++ b/Excel Shapes/Group Shapes/.NET/Group Shapes/Group Shapes/Program.cs @@ -35,7 +35,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("GroupShapes.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/GroupShapes.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -46,3 +46,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel Shapes/Option Button/.NET/Option Button/Option Button/Option Button.csproj b/Excel Shapes/Option Button/.NET/Option Button/Option Button/Option Button.csproj index 37d3741f..2fcc7564 100644 --- a/Excel Shapes/Option Button/.NET/Option Button/Option Button/Option Button.csproj +++ b/Excel Shapes/Option Button/.NET/Option Button/Option Button/Option Button.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel Shapes/Option Button/.NET/Option Button/Option Button/Output/.gitkeep b/Excel Shapes/Option Button/.NET/Option Button/Option Button/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel Shapes/Option Button/.NET/Option Button/Option Button/Program.cs b/Excel Shapes/Option Button/.NET/Option Button/Option Button/Program.cs index 48bd2904..b777e93e 100644 --- a/Excel Shapes/Option Button/.NET/Option Button/Option Button/Program.cs +++ b/Excel Shapes/Option Button/.NET/Option Button/Option Button/Program.cs @@ -40,20 +40,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("OptionButton.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/OptionButton.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("OptionButton.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel Shapes/Remove Comments/.NET/Remove Comments/Remove Comments/Program.cs b/Excel Shapes/Remove Comments/.NET/Remove Comments/Remove Comments/Program.cs index 15077582..7ee9cb56 100644 --- a/Excel Shapes/Remove Comments/.NET/Remove Comments/Remove Comments/Program.cs +++ b/Excel Shapes/Remove Comments/.NET/Remove Comments/Remove Comments/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveComments.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveComments.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -31,3 +31,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel Shapes/Remove Comments/.NET/Remove Comments/Remove Comments/Remove Comments.csproj b/Excel Shapes/Remove Comments/.NET/Remove Comments/Remove Comments/Remove Comments.csproj index cf8100fe..59e0e595 100644 --- a/Excel Shapes/Remove Comments/.NET/Remove Comments/Remove Comments/Remove Comments.csproj +++ b/Excel Shapes/Remove Comments/.NET/Remove Comments/Remove Comments/Remove Comments.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Output/.gitkeep b/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Program.cs b/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Program.cs index 8cdaa3f4..4eb83c0b 100644 --- a/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Program.cs +++ b/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Program.cs @@ -29,20 +29,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ShowOrHideComment.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ShowOrHideComment.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ShowOrHideComment.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Show or Hide Comment.csproj b/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Show or Hide Comment.csproj index 62b3fb98..f34a59f5 100644 --- a/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Show or Hide Comment.csproj +++ b/Excel Shapes/Show or Hide Comment/.NET/Show or Hide Comment/Show or Hide Comment/Show or Hide Comment.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel Shapes/Text Box/.NET/Text Box/Text Box/Output/.gitkeep b/Excel Shapes/Text Box/.NET/Text Box/Text Box/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel Shapes/Text Box/.NET/Text Box/Text Box/Program.cs b/Excel Shapes/Text Box/.NET/Text Box/Text Box/Program.cs index a764ed05..49997cba 100644 --- a/Excel Shapes/Text Box/.NET/Text Box/Text Box/Program.cs +++ b/Excel Shapes/Text Box/.NET/Text Box/Text Box/Program.cs @@ -36,20 +36,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("TextBox.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/TextBox.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("TextBox.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel Shapes/Text Box/.NET/Text Box/Text Box/Text Box.csproj b/Excel Shapes/Text Box/.NET/Text Box/Text Box/Text Box.csproj index bc1fe308..c57cebf1 100644 --- a/Excel Shapes/Text Box/.NET/Text Box/Text Box/Text Box.csproj +++ b/Excel Shapes/Text Box/.NET/Text Box/Text Box/Text Box.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel Shapes/Ungroup All Shapes/.NET/Ungroup All Shapes/Ungroup All Shapes/Program.cs b/Excel Shapes/Ungroup All Shapes/.NET/Ungroup All Shapes/Ungroup All Shapes/Program.cs index 4a68d970..b9eda8b5 100644 --- a/Excel Shapes/Ungroup All Shapes/.NET/Ungroup All Shapes/Ungroup All Shapes/Program.cs +++ b/Excel Shapes/Ungroup All Shapes/.NET/Ungroup All Shapes/Ungroup All Shapes/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("UngroupAllShapes.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/UngroupAllShapes.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel Shapes/Ungroup All Shapes/.NET/Ungroup All Shapes/Ungroup All Shapes/Ungroup All Shapes.csproj b/Excel Shapes/Ungroup All Shapes/.NET/Ungroup All Shapes/Ungroup All Shapes/Ungroup All Shapes.csproj index 667841f5..506e738e 100644 --- a/Excel Shapes/Ungroup All Shapes/.NET/Ungroup All Shapes/Ungroup All Shapes/Ungroup All Shapes.csproj +++ b/Excel Shapes/Ungroup All Shapes/.NET/Ungroup All Shapes/Ungroup All Shapes/Ungroup All Shapes.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel Shapes/Ungroup Shapes/.NET/Ungroup Shapes/Ungroup Shapes/Program.cs b/Excel Shapes/Ungroup Shapes/.NET/Ungroup Shapes/Ungroup Shapes/Program.cs index 04380c66..535978bf 100644 --- a/Excel Shapes/Ungroup Shapes/.NET/Ungroup Shapes/Ungroup Shapes/Program.cs +++ b/Excel Shapes/Ungroup Shapes/.NET/Ungroup Shapes/Ungroup Shapes/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("UngroupShapes.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/UngroupShapes.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel Shapes/Ungroup Shapes/.NET/Ungroup Shapes/Ungroup Shapes/Ungroup Shapes.csproj b/Excel Shapes/Ungroup Shapes/.NET/Ungroup Shapes/Ungroup Shapes/Ungroup Shapes.csproj index 2faabc99..0c9ccbc4 100644 --- a/Excel Shapes/Ungroup Shapes/.NET/Ungroup Shapes/Ungroup Shapes/Ungroup Shapes.csproj +++ b/Excel Shapes/Ungroup Shapes/.NET/Ungroup Shapes/Ungroup Shapes/Ungroup Shapes.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV/Excel to CSV.csproj b/Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV/Excel to CSV.csproj index fec37cca..2844d810 100644 --- a/Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV/Excel to CSV.csproj +++ b/Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV/Excel to CSV.csproj @@ -16,7 +16,11 @@ Always + + Always + + diff --git a/Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV/Program.cs b/Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV/Program.cs index faedd718..6caab63d 100644 --- a/Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV/Program.cs +++ b/Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV/Program.cs @@ -14,7 +14,7 @@ public static void Main(string[] args) IWorkbook workbook = application.Workbooks.Open(inputStream); //Saving the workbook as streams - FileStream outputStream = new FileStream("Sample.csv", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Sample.csv"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream, ","); //Dispose streams @@ -24,3 +24,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Excel to HTML.csproj b/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Excel to HTML.csproj index f27d641d..77eec20c 100644 --- a/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Excel to HTML.csproj +++ b/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Excel to HTML.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,11 @@ + + + Always + + + + diff --git a/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Output/.gitkeep b/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Program.cs b/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Program.cs index 7f0b0f59..f22064ed 100644 --- a/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Program.cs +++ b/Excel to HTML/Excel to HTML/.NET/Excel to HTML/Excel to HTML/Program.cs @@ -24,20 +24,17 @@ static void Main(string[] args) #region Save as HTML //Saving the workbook - FileStream outputStream = new FileStream("Output.html", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.html"), FileMode.Create, FileAccess.Write); workbook.SaveAsHtml(outputStream, saveOptions); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("Output.html") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Excel to ODS.csproj b/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Excel to ODS.csproj index 96f3a6f7..5f1749b5 100644 --- a/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Excel to ODS.csproj +++ b/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Excel to ODS.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Output/.gitkeep b/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Program.cs b/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Program.cs index 7739038a..819cab7e 100644 --- a/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Program.cs +++ b/Excel to ODS/Excel to ODS/.NET/Excel to ODS/Excel to ODS/Program.cs @@ -50,20 +50,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ExcelToODS.ods", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ExcelToODS.ods"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream, ExcelSaveType.SaveAsODS); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ExcelToODS.ods") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel to PDF/Automatic Layout/.NET/Automatic Layout/Automatic Layout/Automatic Layout.csproj b/Excel to PDF/Automatic Layout/.NET/Automatic Layout/Automatic Layout/Automatic Layout.csproj index 0e3cc588..8bf916c7 100644 --- a/Excel to PDF/Automatic Layout/.NET/Automatic Layout/Automatic Layout/Automatic Layout.csproj +++ b/Excel to PDF/Automatic Layout/.NET/Automatic Layout/Automatic Layout/Automatic Layout.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Automatic Layout/.NET/Automatic Layout/Automatic Layout/Program.cs b/Excel to PDF/Automatic Layout/.NET/Automatic Layout/Automatic Layout/Program.cs index 7d7d5a7b..86e399c7 100644 --- a/Excel to PDF/Automatic Layout/.NET/Automatic Layout/Automatic Layout/Program.cs +++ b/Excel to PDF/Automatic Layout/.NET/Automatic Layout/Automatic Layout/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Automatic.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Automatic.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Blank Page to PDF/.NET/Blank Page to PDF/Blank Page to PDF/Blank Page to PDF.csproj b/Excel to PDF/Blank Page to PDF/.NET/Blank Page to PDF/Blank Page to PDF/Blank Page to PDF.csproj index 32658872..10fad5d2 100644 --- a/Excel to PDF/Blank Page to PDF/.NET/Blank Page to PDF/Blank Page to PDF/Blank Page to PDF.csproj +++ b/Excel to PDF/Blank Page to PDF/.NET/Blank Page to PDF/Blank Page to PDF/Blank Page to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Blank Page to PDF/.NET/Blank Page to PDF/Blank Page to PDF/Program.cs b/Excel to PDF/Blank Page to PDF/.NET/Blank Page to PDF/Blank Page to PDF/Program.cs index f6dcd3c8..bde5bcf1 100644 --- a/Excel to PDF/Blank Page to PDF/.NET/Blank Page to PDF/Blank Page to PDF/Program.cs +++ b/Excel to PDF/Blank Page to PDF/.NET/Blank Page to PDF/Blank Page to PDF/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("BlankPageToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/BlankPageToPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Blank Sheet to PDF/.NET/Blank Sheet to PDF/Blank Sheet to PDF/Blank Sheet to PDF.csproj b/Excel to PDF/Blank Sheet to PDF/.NET/Blank Sheet to PDF/Blank Sheet to PDF/Blank Sheet to PDF.csproj index b6c9a453..ccf3f9e6 100644 --- a/Excel to PDF/Blank Sheet to PDF/.NET/Blank Sheet to PDF/Blank Sheet to PDF/Blank Sheet to PDF.csproj +++ b/Excel to PDF/Blank Sheet to PDF/.NET/Blank Sheet to PDF/Blank Sheet to PDF/Blank Sheet to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Blank Sheet to PDF/.NET/Blank Sheet to PDF/Blank Sheet to PDF/Program.cs b/Excel to PDF/Blank Sheet to PDF/.NET/Blank Sheet to PDF/Blank Sheet to PDF/Program.cs index 4684b782..f1287ef8 100644 --- a/Excel to PDF/Blank Sheet to PDF/.NET/Blank Sheet to PDF/Blank Sheet to PDF/Program.cs +++ b/Excel to PDF/Blank Sheet to PDF/.NET/Blank Sheet to PDF/Blank Sheet to PDF/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("BlankSheetToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/BlankSheetToPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Bookmarks in PDF/.NET/Bookmarks in PDF/Bookmarks in PDF/Bookmarks in PDF.csproj b/Excel to PDF/Bookmarks in PDF/.NET/Bookmarks in PDF/Bookmarks in PDF/Bookmarks in PDF.csproj index 2087bb25..bfe7d8e3 100644 --- a/Excel to PDF/Bookmarks in PDF/.NET/Bookmarks in PDF/Bookmarks in PDF/Bookmarks in PDF.csproj +++ b/Excel to PDF/Bookmarks in PDF/.NET/Bookmarks in PDF/Bookmarks in PDF/Bookmarks in PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Bookmarks in PDF/.NET/Bookmarks in PDF/Bookmarks in PDF/Program.cs b/Excel to PDF/Bookmarks in PDF/.NET/Bookmarks in PDF/Bookmarks in PDF/Program.cs index 7d35a182..338fefc9 100644 --- a/Excel to PDF/Bookmarks in PDF/.NET/Bookmarks in PDF/Bookmarks in PDF/Program.cs +++ b/Excel to PDF/Bookmarks in PDF/.NET/Bookmarks in PDF/Bookmarks in PDF/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("BookmarksInPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/BookmarksInPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Chart to PDF/.NET/Chart to PDF/Chart to PDF/Chart to PDF.csproj b/Excel to PDF/Chart to PDF/.NET/Chart to PDF/Chart to PDF/Chart to PDF.csproj index ed29c578..963289bc 100644 --- a/Excel to PDF/Chart to PDF/.NET/Chart to PDF/Chart to PDF/Chart to PDF.csproj +++ b/Excel to PDF/Chart to PDF/.NET/Chart to PDF/Chart to PDF/Chart to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Chart to PDF/.NET/Chart to PDF/Chart to PDF/Program.cs b/Excel to PDF/Chart to PDF/.NET/Chart to PDF/Chart to PDF/Program.cs index 2ac6ed85..37230373 100644 --- a/Excel to PDF/Chart to PDF/.NET/Chart to PDF/Chart to PDF/Program.cs +++ b/Excel to PDF/Chart to PDF/.NET/Chart to PDF/Chart to PDF/Program.cs @@ -27,7 +27,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ChartToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ChartToPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -39,3 +39,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Comments in Place to PDF/.NET/Comments in Place to PDF/Comments in Place to PDF/Comments in Place to PDF.csproj b/Excel to PDF/Comments in Place to PDF/.NET/Comments in Place to PDF/Comments in Place to PDF/Comments in Place to PDF.csproj index eb9342e5..f550ad2c 100644 --- a/Excel to PDF/Comments in Place to PDF/.NET/Comments in Place to PDF/Comments in Place to PDF/Comments in Place to PDF.csproj +++ b/Excel to PDF/Comments in Place to PDF/.NET/Comments in Place to PDF/Comments in Place to PDF/Comments in Place to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Comments in Place to PDF/.NET/Comments in Place to PDF/Comments in Place to PDF/Program.cs b/Excel to PDF/Comments in Place to PDF/.NET/Comments in Place to PDF/Comments in Place to PDF/Program.cs index 5096102b..537494b3 100644 --- a/Excel to PDF/Comments in Place to PDF/.NET/Comments in Place to PDF/Comments in Place to PDF/Program.cs +++ b/Excel to PDF/Comments in Place to PDF/.NET/Comments in Place to PDF/Comments in Place to PDF/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CommentsInPlaceToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CommentsInPlaceToPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -40,3 +40,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Comments to PDF at End/.NET/Comments to PDF at End/Comments to PDF at End/Comments to PDF at End.csproj b/Excel to PDF/Comments to PDF at End/.NET/Comments to PDF at End/Comments to PDF at End/Comments to PDF at End.csproj index e094dfbf..3e679727 100644 --- a/Excel to PDF/Comments to PDF at End/.NET/Comments to PDF at End/Comments to PDF at End/Comments to PDF at End.csproj +++ b/Excel to PDF/Comments to PDF at End/.NET/Comments to PDF at End/Comments to PDF at End/Comments to PDF at End.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Comments to PDF at End/.NET/Comments to PDF at End/Comments to PDF at End/Program.cs b/Excel to PDF/Comments to PDF at End/.NET/Comments to PDF at End/Comments to PDF at End/Program.cs index c5eefb78..9047875a 100644 --- a/Excel to PDF/Comments to PDF at End/.NET/Comments to PDF at End/Comments to PDF at End/Program.cs +++ b/Excel to PDF/Comments to PDF at End/.NET/Comments to PDF at End/Comments to PDF at End/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CommentsToPDFAtEnd.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CommentsToPDFAtEnd.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -40,3 +40,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Complex Script to PDF/.NET/Complex Script to PDF/Complex Script to PDF/Complex Script to PDF.csproj b/Excel to PDF/Complex Script to PDF/.NET/Complex Script to PDF/Complex Script to PDF/Complex Script to PDF.csproj index 768eb769..ad65ffdf 100644 --- a/Excel to PDF/Complex Script to PDF/.NET/Complex Script to PDF/Complex Script to PDF/Complex Script to PDF.csproj +++ b/Excel to PDF/Complex Script to PDF/.NET/Complex Script to PDF/Complex Script to PDF/Complex Script to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Complex Script to PDF/.NET/Complex Script to PDF/Complex Script to PDF/Program.cs b/Excel to PDF/Complex Script to PDF/.NET/Complex Script to PDF/Complex Script to PDF/Program.cs index de766f6c..17981581 100644 --- a/Excel to PDF/Complex Script to PDF/.NET/Complex Script to PDF/Complex Script to PDF/Program.cs +++ b/Excel to PDF/Complex Script to PDF/.NET/Complex Script to PDF/Complex Script to PDF/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ComplexScriptToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ComplexScriptToPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Custom Paper Size/.NET/Custom Paper Size/Custom Paper Size/Custom Paper Size.csproj b/Excel to PDF/Custom Paper Size/.NET/Custom Paper Size/Custom Paper Size/Custom Paper Size.csproj index edb00fad..98af34c4 100644 --- a/Excel to PDF/Custom Paper Size/.NET/Custom Paper Size/Custom Paper Size/Custom Paper Size.csproj +++ b/Excel to PDF/Custom Paper Size/.NET/Custom Paper Size/Custom Paper Size/Custom Paper Size.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Custom Paper Size/.NET/Custom Paper Size/Custom Paper Size/Program.cs b/Excel to PDF/Custom Paper Size/.NET/Custom Paper Size/Custom Paper Size/Program.cs index 1d7b60ee..a500b7f9 100644 --- a/Excel to PDF/Custom Paper Size/.NET/Custom Paper Size/Custom Paper Size/Program.cs +++ b/Excel to PDF/Custom Paper Size/.NET/Custom Paper Size/Custom Paper Size/Program.cs @@ -31,7 +31,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CustomPaperSize.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CustomPaperSize.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -43,3 +43,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Custom Scaling/.NET/Custom Scaling/Custom Scaling/Custom Scaling.csproj b/Excel to PDF/Custom Scaling/.NET/Custom Scaling/Custom Scaling/Custom Scaling.csproj index cdedf939..5743db8d 100644 --- a/Excel to PDF/Custom Scaling/.NET/Custom Scaling/Custom Scaling/Custom Scaling.csproj +++ b/Excel to PDF/Custom Scaling/.NET/Custom Scaling/Custom Scaling/Custom Scaling.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Custom Scaling/.NET/Custom Scaling/Custom Scaling/Program.cs b/Excel to PDF/Custom Scaling/.NET/Custom Scaling/Custom Scaling/Program.cs index 05b2565c..cbfc9962 100644 --- a/Excel to PDF/Custom Scaling/.NET/Custom Scaling/Custom Scaling/Program.cs +++ b/Excel to PDF/Custom Scaling/.NET/Custom Scaling/Custom Scaling/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CustomScaling.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CustomScaling.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Document Properties to PDF/.NET/Document Properties to PDF/Document Properties to PDF/Document Properties to PDF.csproj b/Excel to PDF/Document Properties to PDF/.NET/Document Properties to PDF/Document Properties to PDF/Document Properties to PDF.csproj index 368152ae..921d2937 100644 --- a/Excel to PDF/Document Properties to PDF/.NET/Document Properties to PDF/Document Properties to PDF/Document Properties to PDF.csproj +++ b/Excel to PDF/Document Properties to PDF/.NET/Document Properties to PDF/Document Properties to PDF/Document Properties to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Document Properties to PDF/.NET/Document Properties to PDF/Document Properties to PDF/Program.cs b/Excel to PDF/Document Properties to PDF/.NET/Document Properties to PDF/Document Properties to PDF/Program.cs index 069a1dd5..27e4c2ba 100644 --- a/Excel to PDF/Document Properties to PDF/.NET/Document Properties to PDF/Document Properties to PDF/Program.cs +++ b/Excel to PDF/Document Properties to PDF/.NET/Document Properties to PDF/Document Properties to PDF/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("DocumentProperties.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/DocumentProperties.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Each Worksheet to PDF/.NET/Each Worksheet to PDF/Each Worksheet to PDF/Each Worksheet to PDF.csproj b/Excel to PDF/Each Worksheet to PDF/.NET/Each Worksheet to PDF/Each Worksheet to PDF/Each Worksheet to PDF.csproj index 55fa0313..d09e579d 100644 --- a/Excel to PDF/Each Worksheet to PDF/.NET/Each Worksheet to PDF/Each Worksheet to PDF/Each Worksheet to PDF.csproj +++ b/Excel to PDF/Each Worksheet to PDF/.NET/Each Worksheet to PDF/Each Worksheet to PDF/Each Worksheet to PDF.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Excel to PDF/Each Worksheet to PDF/.NET/Each Worksheet to PDF/Each Worksheet to PDF/Program.cs b/Excel to PDF/Each Worksheet to PDF/.NET/Each Worksheet to PDF/Each Worksheet to PDF/Program.cs index 155c394e..77225399 100644 --- a/Excel to PDF/Each Worksheet to PDF/.NET/Each Worksheet to PDF/Each Worksheet to PDF/Program.cs +++ b/Excel to PDF/Each Worksheet to PDF/.NET/Each Worksheet to PDF/Each Worksheet to PDF/Program.cs @@ -46,3 +46,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Embed Fonts in PDF/.NET/Embed Fonts in PDF/Embed Fonts in PDF/Embed Fonts in PDF.csproj b/Excel to PDF/Embed Fonts in PDF/.NET/Embed Fonts in PDF/Embed Fonts in PDF/Embed Fonts in PDF.csproj index 056a8788..653a5499 100644 --- a/Excel to PDF/Embed Fonts in PDF/.NET/Embed Fonts in PDF/Embed Fonts in PDF/Embed Fonts in PDF.csproj +++ b/Excel to PDF/Embed Fonts in PDF/.NET/Embed Fonts in PDF/Embed Fonts in PDF/Embed Fonts in PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Embed Fonts in PDF/.NET/Embed Fonts in PDF/Embed Fonts in PDF/Program.cs b/Excel to PDF/Embed Fonts in PDF/.NET/Embed Fonts in PDF/Embed Fonts in PDF/Program.cs index 4f9f52b9..fff62225 100644 --- a/Excel to PDF/Embed Fonts in PDF/.NET/Embed Fonts in PDF/Embed Fonts in PDF/Program.cs +++ b/Excel to PDF/Embed Fonts in PDF/.NET/Embed Fonts in PDF/Embed Fonts in PDF/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("EmbedFonts.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/EmbedFonts.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Empty Excel to PDF.csproj b/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Empty Excel to PDF.csproj index 97aeec12..b8266143 100644 --- a/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Empty Excel to PDF.csproj +++ b/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Empty Excel to PDF.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Output/.gitkeep b/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Program.cs b/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Program.cs index 833bb30e..d2c4f986 100644 --- a/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Program.cs +++ b/Excel to PDF/Empty Excel to PDF/.NET/Empty Excel to PDF/Empty Excel to PDF/Program.cs @@ -28,20 +28,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("EmptyExcelToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/EmptyExcelToPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("EmptyExcelToPDF.pdf") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Excel to PDF/Fallback fonts based on script type/.NET/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype.csproj b/Excel to PDF/Fallback fonts based on script type/.NET/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype.csproj index 07a7f994..3e7cb36e 100644 --- a/Excel to PDF/Fallback fonts based on script type/.NET/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype.csproj +++ b/Excel to PDF/Fallback fonts based on script type/.NET/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype.csproj @@ -15,7 +15,11 @@ Always + + Always + + diff --git a/Excel to PDF/Fallback fonts based on script type/.NET/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype/Program.cs b/Excel to PDF/Fallback fonts based on script type/.NET/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype/Program.cs index 82b9b77e..1392767e 100644 --- a/Excel to PDF/Fallback fonts based on script type/.NET/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype/Program.cs +++ b/Excel to PDF/Fallback fonts based on script type/.NET/Fallback_fonts_based_on_scripttype/Fallback_fonts_based_on_scripttype/Program.cs @@ -49,3 +49,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Excel to PDF/Fallback fonts for unicode range/.NET/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range.csproj b/Excel to PDF/Fallback fonts for unicode range/.NET/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range.csproj index 07a7f994..3e7cb36e 100644 --- a/Excel to PDF/Fallback fonts for unicode range/.NET/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range.csproj +++ b/Excel to PDF/Fallback fonts for unicode range/.NET/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range.csproj @@ -15,7 +15,11 @@ Always + + Always + + diff --git a/Excel to PDF/Fallback fonts for unicode range/.NET/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range/Program.cs b/Excel to PDF/Fallback fonts for unicode range/.NET/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range/Program.cs index b3119700..5a460499 100644 --- a/Excel to PDF/Fallback fonts for unicode range/.NET/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range/Program.cs +++ b/Excel to PDF/Fallback fonts for unicode range/.NET/Fallback_fonts_for_unicode_range/Fallback_fonts_for_unicode_range/Program.cs @@ -49,3 +49,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Excel to PDF/Fit All Columns On One Page/.NET/Fit All Columns On One Page/Fit All Columns On One Page/Fit All Columns On One Page.csproj b/Excel to PDF/Fit All Columns On One Page/.NET/Fit All Columns On One Page/Fit All Columns On One Page/Fit All Columns On One Page.csproj index c1d8189b..fc7d2d7c 100644 --- a/Excel to PDF/Fit All Columns On One Page/.NET/Fit All Columns On One Page/Fit All Columns On One Page/Fit All Columns On One Page.csproj +++ b/Excel to PDF/Fit All Columns On One Page/.NET/Fit All Columns On One Page/Fit All Columns On One Page/Fit All Columns On One Page.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Fit All Columns On One Page/.NET/Fit All Columns On One Page/Fit All Columns On One Page/Program.cs b/Excel to PDF/Fit All Columns On One Page/.NET/Fit All Columns On One Page/Fit All Columns On One Page/Program.cs index b0b6a693..3807a02b 100644 --- a/Excel to PDF/Fit All Columns On One Page/.NET/Fit All Columns On One Page/Fit All Columns On One Page/Program.cs +++ b/Excel to PDF/Fit All Columns On One Page/.NET/Fit All Columns On One Page/Fit All Columns On One Page/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FitAllColumnsOnOnePage.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FitAllColumnsOnOnePage.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Fit All Rows On One Page/.NET/Fit All Rows On One Page/Fit All Rows On One Page/Fit All Rows On One Page.csproj b/Excel to PDF/Fit All Rows On One Page/.NET/Fit All Rows On One Page/Fit All Rows On One Page/Fit All Rows On One Page.csproj index 5b235da8..6dac49bb 100644 --- a/Excel to PDF/Fit All Rows On One Page/.NET/Fit All Rows On One Page/Fit All Rows On One Page/Fit All Rows On One Page.csproj +++ b/Excel to PDF/Fit All Rows On One Page/.NET/Fit All Rows On One Page/Fit All Rows On One Page/Fit All Rows On One Page.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Fit All Rows On One Page/.NET/Fit All Rows On One Page/Fit All Rows On One Page/Program.cs b/Excel to PDF/Fit All Rows On One Page/.NET/Fit All Rows On One Page/Fit All Rows On One Page/Program.cs index 3be5f9f9..96f5a9f2 100644 --- a/Excel to PDF/Fit All Rows On One Page/.NET/Fit All Rows On One Page/Fit All Rows On One Page/Program.cs +++ b/Excel to PDF/Fit All Rows On One Page/.NET/Fit All Rows On One Page/Fit All Rows On One Page/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FitAllRowsOnOnePage.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FitAllRowsOnOnePage.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Fit Sheet On One Page/.NET/Fit Sheet On One Page/Fit Sheet On One Page/Fit Sheet On One Page.csproj b/Excel to PDF/Fit Sheet On One Page/.NET/Fit Sheet On One Page/Fit Sheet On One Page/Fit Sheet On One Page.csproj index 6ed82d5d..3e9827af 100644 --- a/Excel to PDF/Fit Sheet On One Page/.NET/Fit Sheet On One Page/Fit Sheet On One Page/Fit Sheet On One Page.csproj +++ b/Excel to PDF/Fit Sheet On One Page/.NET/Fit Sheet On One Page/Fit Sheet On One Page/Fit Sheet On One Page.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Fit Sheet On One Page/.NET/Fit Sheet On One Page/Fit Sheet On One Page/Program.cs b/Excel to PDF/Fit Sheet On One Page/.NET/Fit Sheet On One Page/Fit Sheet On One Page/Program.cs index 34bbd307..4583e6a0 100644 --- a/Excel to PDF/Fit Sheet On One Page/.NET/Fit Sheet On One Page/Fit Sheet On One Page/Program.cs +++ b/Excel to PDF/Fit Sheet On One Page/.NET/Fit Sheet On One Page/Fit Sheet On One Page/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FitSheetOnOnePage.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FitSheetOnOnePage.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Gridlines in PDF/.NET/Gridlines in PDF/Gridlines in PDF/Gridlines in PDF.csproj b/Excel to PDF/Gridlines in PDF/.NET/Gridlines in PDF/Gridlines in PDF/Gridlines in PDF.csproj index e431801a..e2addc10 100644 --- a/Excel to PDF/Gridlines in PDF/.NET/Gridlines in PDF/Gridlines in PDF/Gridlines in PDF.csproj +++ b/Excel to PDF/Gridlines in PDF/.NET/Gridlines in PDF/Gridlines in PDF/Gridlines in PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Gridlines in PDF/.NET/Gridlines in PDF/Gridlines in PDF/Program.cs b/Excel to PDF/Gridlines in PDF/.NET/Gridlines in PDF/Gridlines in PDF/Program.cs index 4091cbef..7b47a419 100644 --- a/Excel to PDF/Gridlines in PDF/.NET/Gridlines in PDF/Gridlines in PDF/Program.cs +++ b/Excel to PDF/Gridlines in PDF/.NET/Gridlines in PDF/Gridlines in PDF/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Gridlines.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Gridlines.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Initialize default fallback fonts/.NET/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts.csproj b/Excel to PDF/Initialize default fallback fonts/.NET/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts.csproj index 0d6638bf..de8acf3a 100644 --- a/Excel to PDF/Initialize default fallback fonts/.NET/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts.csproj +++ b/Excel to PDF/Initialize default fallback fonts/.NET/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts.csproj @@ -16,7 +16,11 @@ Always + + Always + + diff --git a/Excel to PDF/Initialize default fallback fonts/.NET/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts/Program.cs b/Excel to PDF/Initialize default fallback fonts/.NET/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts/Program.cs index e82d79f7..11e31d59 100644 --- a/Excel to PDF/Initialize default fallback fonts/.NET/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts/Program.cs +++ b/Excel to PDF/Initialize default fallback fonts/.NET/Initialize_default-fallback_fonts/Initialize_default-fallback_fonts/Program.cs @@ -38,3 +38,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Excel to PDF/Modify the existing fallback fonts/.NET/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts.csproj b/Excel to PDF/Modify the existing fallback fonts/.NET/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts.csproj index 07a7f994..3e7cb36e 100644 --- a/Excel to PDF/Modify the existing fallback fonts/.NET/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts.csproj +++ b/Excel to PDF/Modify the existing fallback fonts/.NET/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts.csproj @@ -15,7 +15,11 @@ Always + + Always + + diff --git a/Excel to PDF/Modify the existing fallback fonts/.NET/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts/Program.cs b/Excel to PDF/Modify the existing fallback fonts/.NET/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts/Program.cs index e23a6a7b..a80a511e 100644 --- a/Excel to PDF/Modify the existing fallback fonts/.NET/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts/Program.cs +++ b/Excel to PDF/Modify the existing fallback fonts/.NET/Modify_the_existing_fallback_fonts/Modify_the_existing_fallback_fonts/Program.cs @@ -48,3 +48,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Excel to PDF/Multiple Excel to PDF/.NET/Multiple Excel to PDF/Multiple Excel to PDF/Multiple Excel to PDF.csproj b/Excel to PDF/Multiple Excel to PDF/.NET/Multiple Excel to PDF/Multiple Excel to PDF/Multiple Excel to PDF.csproj index c7ff2921..bd3127f4 100644 --- a/Excel to PDF/Multiple Excel to PDF/.NET/Multiple Excel to PDF/Multiple Excel to PDF/Multiple Excel to PDF.csproj +++ b/Excel to PDF/Multiple Excel to PDF/.NET/Multiple Excel to PDF/Multiple Excel to PDF/Multiple Excel to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Multiple Excel to PDF/.NET/Multiple Excel to PDF/Multiple Excel to PDF/Program.cs b/Excel to PDF/Multiple Excel to PDF/.NET/Multiple Excel to PDF/Multiple Excel to PDF/Program.cs index c3c00b20..52e3b01c 100644 --- a/Excel to PDF/Multiple Excel to PDF/.NET/Multiple Excel to PDF/Multiple Excel to PDF/Program.cs +++ b/Excel to PDF/Multiple Excel to PDF/.NET/Multiple Excel to PDF/Multiple Excel to PDF/Program.cs @@ -36,7 +36,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MultipleExcelToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MultipleExcelToPDF.pdf"), FileMode.Create, FileAccess.Write); newDocument.Save(outputStream); #endregion @@ -49,3 +49,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/No Comments in PDF/.NET/No Comments in PDF/No Comments in PDF/No Comments in PDF.csproj b/Excel to PDF/No Comments in PDF/.NET/No Comments in PDF/No Comments in PDF/No Comments in PDF.csproj index eed89994..b3ecb9c9 100644 --- a/Excel to PDF/No Comments in PDF/.NET/No Comments in PDF/No Comments in PDF/No Comments in PDF.csproj +++ b/Excel to PDF/No Comments in PDF/.NET/No Comments in PDF/No Comments in PDF/No Comments in PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/No Comments in PDF/.NET/No Comments in PDF/No Comments in PDF/Program.cs b/Excel to PDF/No Comments in PDF/.NET/No Comments in PDF/No Comments in PDF/Program.cs index b3c400b0..22445b7e 100644 --- a/Excel to PDF/No Comments in PDF/.NET/No Comments in PDF/No Comments in PDF/Program.cs +++ b/Excel to PDF/No Comments in PDF/.NET/No Comments in PDF/No Comments in PDF/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("NoCommentsInPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/NoCommentsInPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -40,3 +40,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/No Scaling/.NET/No Scaling/No Scaling/No Scaling.csproj b/Excel to PDF/No Scaling/.NET/No Scaling/No Scaling/No Scaling.csproj index 1b19a53d..e18d4482 100644 --- a/Excel to PDF/No Scaling/.NET/No Scaling/No Scaling/No Scaling.csproj +++ b/Excel to PDF/No Scaling/.NET/No Scaling/No Scaling/No Scaling.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/No Scaling/.NET/No Scaling/No Scaling/Program.cs b/Excel to PDF/No Scaling/.NET/No Scaling/No Scaling/Program.cs index de7841c7..802fabaa 100644 --- a/Excel to PDF/No Scaling/.NET/No Scaling/No Scaling/Program.cs +++ b/Excel to PDF/No Scaling/.NET/No Scaling/No Scaling/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("NoScaling.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/NoScaling.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/PDF Conformance/.NET/PDF Conformance/PDF Conformance/PDF Conformance.csproj b/Excel to PDF/PDF Conformance/.NET/PDF Conformance/PDF Conformance/PDF Conformance.csproj index 16745a1e..57e1b4fb 100644 --- a/Excel to PDF/PDF Conformance/.NET/PDF Conformance/PDF Conformance/PDF Conformance.csproj +++ b/Excel to PDF/PDF Conformance/.NET/PDF Conformance/PDF Conformance/PDF Conformance.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/PDF Conformance/.NET/PDF Conformance/PDF Conformance/Program.cs b/Excel to PDF/PDF Conformance/.NET/PDF Conformance/PDF Conformance/Program.cs index 55e6d268..8f66cd69 100644 --- a/Excel to PDF/PDF Conformance/.NET/PDF Conformance/PDF Conformance/Program.cs +++ b/Excel to PDF/PDF Conformance/.NET/PDF Conformance/PDF Conformance/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PDFConformance.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PDFConformance.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Quality Image in PDF/.NET/Quality Image in PDF/Quality Image in PDF/Program.cs b/Excel to PDF/Quality Image in PDF/.NET/Quality Image in PDF/Quality Image in PDF/Program.cs index 6e3af92b..10e8e705 100644 --- a/Excel to PDF/Quality Image in PDF/.NET/Quality Image in PDF/Quality Image in PDF/Program.cs +++ b/Excel to PDF/Quality Image in PDF/.NET/Quality Image in PDF/Quality Image in PDF/Program.cs @@ -30,7 +30,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("QualityImageInPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/QualityImageInPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Quality Image in PDF/.NET/Quality Image in PDF/Quality Image in PDF/Quality Image in PDF.csproj b/Excel to PDF/Quality Image in PDF/.NET/Quality Image in PDF/Quality Image in PDF/Quality Image in PDF.csproj index 4b3bcd7b..5b49b782 100644 --- a/Excel to PDF/Quality Image in PDF/.NET/Quality Image in PDF/Quality Image in PDF/Quality Image in PDF.csproj +++ b/Excel to PDF/Quality Image in PDF/.NET/Quality Image in PDF/Quality Image in PDF/Quality Image in PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Selected Worksheets to PDF/.NET/Selected Worksheets to PDF/Selected Worksheets to PDF/Program.cs b/Excel to PDF/Selected Worksheets to PDF/.NET/Selected Worksheets to PDF/Selected Worksheets to PDF/Program.cs index b52c1c78..f2eaa41a 100644 --- a/Excel to PDF/Selected Worksheets to PDF/.NET/Selected Worksheets to PDF/Selected Worksheets to PDF/Program.cs +++ b/Excel to PDF/Selected Worksheets to PDF/.NET/Selected Worksheets to PDF/Selected Worksheets to PDF/Program.cs @@ -41,7 +41,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SelectedSheetsToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SelectedSheetsToPDF.pdf"), FileMode.Create, FileAccess.Write); newDocument.Save(outputStream); #endregion @@ -53,3 +53,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Selected Worksheets to PDF/.NET/Selected Worksheets to PDF/Selected Worksheets to PDF/Selected Worksheets to PDF.csproj b/Excel to PDF/Selected Worksheets to PDF/.NET/Selected Worksheets to PDF/Selected Worksheets to PDF/Selected Worksheets to PDF.csproj index 2d6912a9..5ebb9b6d 100644 --- a/Excel to PDF/Selected Worksheets to PDF/.NET/Selected Worksheets to PDF/Selected Worksheets to PDF/Selected Worksheets to PDF.csproj +++ b/Excel to PDF/Selected Worksheets to PDF/.NET/Selected Worksheets to PDF/Selected Worksheets to PDF/Selected Worksheets to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Show Header Footer in PDF/.NET/Show Header Footer In PDF/Show Header Footer In PDF/Program.cs b/Excel to PDF/Show Header Footer in PDF/.NET/Show Header Footer In PDF/Show Header Footer In PDF/Program.cs index 8b7d1f1f..a4590015 100644 --- a/Excel to PDF/Show Header Footer in PDF/.NET/Show Header Footer In PDF/Show Header Footer In PDF/Program.cs +++ b/Excel to PDF/Show Header Footer in PDF/.NET/Show Header Footer In PDF/Show Header Footer In PDF/Program.cs @@ -33,7 +33,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HeaderFooterInPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HeaderFooterInPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -45,3 +45,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Show Header Footer in PDF/.NET/Show Header Footer In PDF/Show Header Footer In PDF/Show Header Footer In PDF.csproj b/Excel to PDF/Show Header Footer in PDF/.NET/Show Header Footer In PDF/Show Header Footer In PDF/Show Header Footer In PDF.csproj index 911cd08b..e0b28b7d 100644 --- a/Excel to PDF/Show Header Footer in PDF/.NET/Show Header Footer In PDF/Show Header Footer In PDF/Show Header Footer In PDF.csproj +++ b/Excel to PDF/Show Header Footer in PDF/.NET/Show Header Footer In PDF/Show Header Footer In PDF/Show Header Footer In PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Warnings/.NET/Warnings/Warnings/Program.cs b/Excel to PDF/Warnings/.NET/Warnings/Warnings/Program.cs index 00c96094..1203bf6d 100644 --- a/Excel to PDF/Warnings/.NET/Warnings/Warnings/Program.cs +++ b/Excel to PDF/Warnings/.NET/Warnings/Warnings/Program.cs @@ -37,7 +37,7 @@ static void Main(string[] args) { #region Save //Saving the workbook - FileStream outputStream = new FileStream("ExceltoPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ExceltoPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -62,3 +62,7 @@ public void ShowWarning(WarningInfo warning) } } + + + + diff --git a/Excel to PDF/Warnings/.NET/Warnings/Warnings/Warnings.csproj b/Excel to PDF/Warnings/.NET/Warnings/Warnings/Warnings.csproj index 42d4e276..d15045e5 100644 --- a/Excel to PDF/Warnings/.NET/Warnings/Warnings/Warnings.csproj +++ b/Excel to PDF/Warnings/.NET/Warnings/Warnings/Warnings.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/Program.cs b/Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/Program.cs index 78e83907..0c0330e9 100644 --- a/Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/Program.cs +++ b/Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("WorkbookToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/WorkbookToPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -36,3 +36,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/Workbook to PDF.csproj b/Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/Workbook to PDF.csproj index 063d69a2..2c6b3f44 100644 --- a/Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/Workbook to PDF.csproj +++ b/Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/Workbook to PDF.csproj @@ -15,7 +15,12 @@ Always + + Always + + + diff --git a/Excel to PDF/Worksheet to PDF/.NET/Worksheet to PDF/Worksheet to PDF/Program.cs b/Excel to PDF/Worksheet to PDF/.NET/Worksheet to PDF/Worksheet to PDF/Program.cs index 4d56d31f..ae8e78d9 100644 --- a/Excel to PDF/Worksheet to PDF/.NET/Worksheet to PDF/Worksheet to PDF/Program.cs +++ b/Excel to PDF/Worksheet to PDF/.NET/Worksheet to PDF/Worksheet to PDF/Program.cs @@ -25,7 +25,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("WorksheetToPDF.pdf", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/WorksheetToPDF.pdf"), FileMode.Create, FileAccess.Write); pdfDocument.Save(outputStream); #endregion @@ -37,3 +37,7 @@ static void Main(string[] args) } } + + + + diff --git a/Excel to PDF/Worksheet to PDF/.NET/Worksheet to PDF/Worksheet to PDF/Worksheet to PDF.csproj b/Excel to PDF/Worksheet to PDF/.NET/Worksheet to PDF/Worksheet to PDF/Worksheet to PDF.csproj index 24735da0..0a85c570 100644 --- a/Excel to PDF/Worksheet to PDF/.NET/Worksheet to PDF/Worksheet to PDF/Worksheet to PDF.csproj +++ b/Excel to PDF/Worksheet to PDF/.NET/Worksheet to PDF/Worksheet to PDF/Worksheet to PDF.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Excel to TSV/Excel to TSV/.NET/Excel to TSV/Excel to TSV/Excel to TSV.csproj b/Excel to TSV/Excel to TSV/.NET/Excel to TSV/Excel to TSV/Excel to TSV.csproj index 0cb0ac82..dc5fedd1 100644 --- a/Excel to TSV/Excel to TSV/.NET/Excel to TSV/Excel to TSV/Excel to TSV.csproj +++ b/Excel to TSV/Excel to TSV/.NET/Excel to TSV/Excel to TSV/Excel to TSV.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Excel to TSV/Excel to TSV/.NET/Excel to TSV/Excel to TSV/Program.cs b/Excel to TSV/Excel to TSV/.NET/Excel to TSV/Excel to TSV/Program.cs index 131bf34f..c63ae5a1 100644 --- a/Excel to TSV/Excel to TSV/.NET/Excel to TSV/Excel to TSV/Program.cs +++ b/Excel to TSV/Excel to TSV/.NET/Excel to TSV/Excel to TSV/Program.cs @@ -15,9 +15,13 @@ public static void Main(string[] args) IWorkbook workbook = application.Workbooks.Open(inputStream); //Save the workbook in CSV format with tab(\t) as delimiter - FileStream outputStream = new FileStream("Output.tsv", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.tsv"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream, "\t"); } } } } + + + + diff --git a/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Autofit Rows and Columns.csproj b/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Autofit Rows and Columns.csproj index 462946a5..72cad401 100644 --- a/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Autofit Rows and Columns.csproj +++ b/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Autofit Rows and Columns.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Output/.gitkeep b/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Program.cs b/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Program.cs index d64b261b..8c2b0112 100644 --- a/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Program.cs +++ b/Format rows and columns/Autofit Rows and Columns/.NET/Autofit Rows and Columns/Autofit Rows and Columns/Program.cs @@ -33,21 +33,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AutofitRowsandColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AutofitRowsandColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("AutofitRowsandColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Delete Rows and Columns.csproj b/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Delete Rows and Columns.csproj index 2af27150..e12d67d7 100644 --- a/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Delete Rows and Columns.csproj +++ b/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Delete Rows and Columns.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Output/.gitkeep b/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Program.cs b/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Program.cs index f7c0d9f5..72ea6531 100644 --- a/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Program.cs +++ b/Format rows and columns/Delete Rows and Columns/.NET/Delete Rows and Columns/Delete Rows and Columns/Program.cs @@ -33,21 +33,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("DeleteRowsandColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/DeleteRowsandColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("DeleteRowsandColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Expand or Collapse Groups.csproj b/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Expand or Collapse Groups.csproj index 39b7ec51..678cffdb 100644 --- a/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Expand or Collapse Groups.csproj +++ b/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Expand or Collapse Groups.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Output/.gitkeep b/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Program.cs b/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Program.cs index 0b264e4f..a9d7b8cd 100644 --- a/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Program.cs +++ b/Format rows and columns/Expand or Collapse Groups/.NET/Expand or Collapse Groups/Expand or Collapse Groups/Program.cs @@ -37,20 +37,13 @@ public void ExpandGroups() #region Save //Saving the workbook - FileStream outputStream = new FileStream("ExpandGroups.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ExpandGroups.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ExpandGroups.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } public void CollapseGroups() @@ -75,21 +68,18 @@ public void CollapseGroups() #region Save //Saving the workbook - FileStream outputStream = new FileStream("CollapseGroups.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CollapseGroups.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CollapseGroups.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Group Rows and Columns.csproj b/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Group Rows and Columns.csproj index 907ac5f7..01bede6a 100644 --- a/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Group Rows and Columns.csproj +++ b/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Group Rows and Columns.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Output/.gitkeep b/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Program.cs b/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Program.cs index f9bdbc6a..d01fb53c 100644 --- a/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Program.cs +++ b/Format rows and columns/Group Rows and Columns/.NET/Group Rows and Columns/Group Rows and Columns/Program.cs @@ -29,21 +29,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("GroupRowsandColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/GroupRowsandColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("GroupRowsandColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Hide Range.csproj b/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Hide Range.csproj index 0dfe2c6a..9c882fc6 100644 --- a/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Hide Range.csproj +++ b/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Hide Range.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Output/.gitkeep b/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Program.cs b/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Program.cs index df9bc213..cf1043b5 100644 --- a/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Program.cs +++ b/Format rows and columns/Hide Range/.NET/Hide Range/Hide Range/Program.cs @@ -35,20 +35,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HideRange.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HideRange.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HideRange.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Hide Rows and Columns.csproj b/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Hide Rows and Columns.csproj index 36c15207..96b1a61a 100644 --- a/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Hide Rows and Columns.csproj +++ b/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Hide Rows and Columns.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Output/.gitkeep b/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Program.cs b/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Program.cs index 36d7167a..a3fd70ee 100644 --- a/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Program.cs +++ b/Format rows and columns/Hide Rows and Columns/.NET/Hide Rows and Columns/Hide Rows and Columns/Program.cs @@ -23,21 +23,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HideRowsandColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HideRowsandColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HideRowsandColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Insert Rows and Columns.csproj b/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Insert Rows and Columns.csproj index 9fdb6202..f244d914 100644 --- a/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Insert Rows and Columns.csproj +++ b/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Insert Rows and Columns.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Output/.gitkeep b/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Program.cs b/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Program.cs index 72a7ac6a..e48663d9 100644 --- a/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Program.cs +++ b/Format rows and columns/Insert Rows and Columns/.NET/Insert Rows and Columns/Insert Rows and Columns/Program.cs @@ -33,21 +33,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("InsertRowsandColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/InsertRowsandColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("InsertRowsandColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Insert Rows with Merged Cells.csproj b/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Insert Rows with Merged Cells.csproj index 610e93dc..baef8ed4 100644 --- a/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Insert Rows with Merged Cells.csproj +++ b/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Insert Rows with Merged Cells.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Output/.gitkeep b/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Program.cs b/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Program.cs index 634deca8..f0936d86 100644 --- a/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Program.cs +++ b/Format rows and columns/Insert Rows with Merged Cells/.NET/Insert Rows with Merged Cells/Insert Rows with Merged Cells/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("InsertRowswithMergedCells.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/InsertRowswithMergedCells.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -29,13 +29,6 @@ static void Main(string[] args) outputStream.Dispose(); inputStream.Dispose(); - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("InsertRowswithMergedCells.xlsx") - { - UseShellExecute = true - }; - process.Start(); - } } @@ -58,3 +51,7 @@ public static void InsertWithMerge(int rowIndex, int rowCount, IWorksheet worksh } } } + + + + diff --git a/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Move Rows and Columns.csproj b/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Move Rows and Columns.csproj index 045db464..4afd443b 100644 --- a/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Move Rows and Columns.csproj +++ b/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Move Rows and Columns.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Output/.gitkeep b/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Program.cs b/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Program.cs index e5e0187b..6f43bd0b 100644 --- a/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Program.cs +++ b/Format rows and columns/Move Rows and Columns/.NET/Move Rows and Columns/Move Rows and Columns/Program.cs @@ -27,21 +27,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MoveRowsandColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MoveRowsandColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("MoveRowsandColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Output/.gitkeep b/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Program.cs b/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Program.cs index 6ea472c9..382b1627 100644 --- a/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Program.cs +++ b/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Program.cs @@ -33,21 +33,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ResizeRowsandColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ResizeRowsandColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ResizeRowsandColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Resize Rows and Columns.csproj b/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Resize Rows and Columns.csproj index dbc9d3aa..6304288b 100644 --- a/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Resize Rows and Columns.csproj +++ b/Format rows and columns/Resize Rows and Columns/.NET/Resize Rows and Columns/Resize Rows and Columns/Resize Rows and Columns.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Output/.gitkeep b/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Program.cs b/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Program.cs index 629d5d7a..afc22a2d 100644 --- a/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Program.cs +++ b/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Program.cs @@ -27,21 +27,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("UngroupRowsandColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/UngroupRowsandColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("UngroupRowsandColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Ungroup Rows and Columns.csproj b/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Ungroup Rows and Columns.csproj index 922f5ba7..55f29fea 100644 --- a/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Ungroup Rows and Columns.csproj +++ b/Format rows and columns/Ungroup Rows and Columns/.NET/Ungroup Rows and Columns/Ungroup Rows and Columns/Ungroup Rows and Columns.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Getting Started/.NET MAUI/ConvertExceltoPDF/ConvertExceltoPDF/Platforms/MacCatalyst/Program.cs b/Getting Started/.NET MAUI/ConvertExceltoPDF/ConvertExceltoPDF/Platforms/MacCatalyst/Program.cs index 421940d7..d7834aad 100644 --- a/Getting Started/.NET MAUI/ConvertExceltoPDF/ConvertExceltoPDF/Platforms/MacCatalyst/Program.cs +++ b/Getting Started/.NET MAUI/ConvertExceltoPDF/ConvertExceltoPDF/Platforms/MacCatalyst/Program.cs @@ -14,3 +14,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/.NET MAUI/ConvertExceltoPDF/ConvertExceltoPDF/Platforms/iOS/Program.cs b/Getting Started/.NET MAUI/ConvertExceltoPDF/ConvertExceltoPDF/Platforms/iOS/Program.cs index 421940d7..d7834aad 100644 --- a/Getting Started/.NET MAUI/ConvertExceltoPDF/ConvertExceltoPDF/Platforms/iOS/Program.cs +++ b/Getting Started/.NET MAUI/ConvertExceltoPDF/ConvertExceltoPDF/Platforms/iOS/Program.cs @@ -14,3 +14,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/.NET MAUI/CreateExcel/CreateExcel/Platforms/MacCatalyst/Program.cs b/Getting Started/.NET MAUI/CreateExcel/CreateExcel/Platforms/MacCatalyst/Program.cs index 5704b3a4..1042836a 100644 --- a/Getting Started/.NET MAUI/CreateExcel/CreateExcel/Platforms/MacCatalyst/Program.cs +++ b/Getting Started/.NET MAUI/CreateExcel/CreateExcel/Platforms/MacCatalyst/Program.cs @@ -14,3 +14,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/.NET MAUI/CreateExcel/CreateExcel/Platforms/iOS/Program.cs b/Getting Started/.NET MAUI/CreateExcel/CreateExcel/Platforms/iOS/Program.cs index 5704b3a4..1042836a 100644 --- a/Getting Started/.NET MAUI/CreateExcel/CreateExcel/Platforms/iOS/Program.cs +++ b/Getting Started/.NET MAUI/CreateExcel/CreateExcel/Platforms/iOS/Program.cs @@ -14,3 +14,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/.NET MAUI/EditExcel/EditExcel/Platforms/MacCatalyst/Program.cs b/Getting Started/.NET MAUI/EditExcel/EditExcel/Platforms/MacCatalyst/Program.cs index 2deaa9a3..81988cd6 100644 --- a/Getting Started/.NET MAUI/EditExcel/EditExcel/Platforms/MacCatalyst/Program.cs +++ b/Getting Started/.NET MAUI/EditExcel/EditExcel/Platforms/MacCatalyst/Program.cs @@ -14,3 +14,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/.NET MAUI/EditExcel/EditExcel/Platforms/iOS/Program.cs b/Getting Started/.NET MAUI/EditExcel/EditExcel/Platforms/iOS/Program.cs index 2deaa9a3..81988cd6 100644 --- a/Getting Started/.NET MAUI/EditExcel/EditExcel/Platforms/iOS/Program.cs +++ b/Getting Started/.NET MAUI/EditExcel/EditExcel/Platforms/iOS/Program.cs @@ -14,3 +14,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Client Application.csproj b/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Client Application.csproj index 409556a7..ee8ebda7 100644 --- a/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Client Application.csproj +++ b/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Client Application.csproj @@ -1,4 +1,4 @@ - + Exe @@ -8,4 +8,11 @@ enable + + + Always + + + + diff --git a/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Output/.gitkeep b/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Program.cs b/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Program.cs index 7de4b5a5..040924ea 100644 --- a/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Program.cs +++ b/Getting Started/ASP.NET Core Web API/Client Application/Client Application/Program.cs @@ -34,3 +34,7 @@ static async Task Main(string[] args) } } } + + + + diff --git a/Getting Started/ASP.NET Core Web API/Create Excel/Create Excel/Program.cs b/Getting Started/ASP.NET Core Web API/Create Excel/Create Excel/Program.cs index 48863a6d..5467e131 100644 --- a/Getting Started/ASP.NET Core Web API/Create Excel/Create Excel/Program.cs +++ b/Getting Started/ASP.NET Core Web API/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. @@ -23,3 +23,7 @@ app.MapControllers(); app.Run(); + + + + diff --git a/Getting Started/ASP.NET Core/Convert Excel to Image/Convert-Excel-to-Image/Program.cs b/Getting Started/ASP.NET Core/Convert Excel to Image/Convert-Excel-to-Image/Program.cs index 07274680..df3846b1 100644 --- a/Getting Started/ASP.NET Core/Convert Excel to Image/Convert-Excel-to-Image/Program.cs +++ b/Getting Started/ASP.NET Core/Convert Excel to Image/Convert-Excel-to-Image/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Getting Started/ASP.NET Core/Convert Excel to PDF/Convert Excel to PDF/Program.cs b/Getting Started/ASP.NET Core/Convert Excel to PDF/Convert Excel to PDF/Program.cs index 07274680..df3846b1 100644 --- a/Getting Started/ASP.NET Core/Convert Excel to PDF/Convert Excel to PDF/Program.cs +++ b/Getting Started/ASP.NET Core/Convert Excel to PDF/Convert Excel to PDF/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Getting Started/ASP.NET Core/Create Excel/Create Excel/Program.cs b/Getting Started/ASP.NET Core/Create Excel/Create Excel/Program.cs index 461bd5a8..e64cd08e 100644 --- a/Getting Started/ASP.NET Core/Create Excel/Create Excel/Program.cs +++ b/Getting Started/ASP.NET Core/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; @@ -24,3 +24,7 @@ public static IHostBuilder CreateHostBuilder(string[] args) => }); } } + + + + diff --git a/Getting Started/ASP.NET Core/Edit Excel/Edit Excel/Program.cs b/Getting Started/ASP.NET Core/Edit Excel/Edit Excel/Program.cs index 4fe5e4c4..d640518b 100644 --- a/Getting Started/ASP.NET Core/Edit Excel/Edit Excel/Program.cs +++ b/Getting Started/ASP.NET Core/Edit Excel/Edit Excel/Program.cs @@ -1,4 +1,4 @@ -using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; @@ -24,3 +24,7 @@ public static IHostBuilder CreateHostBuilder(string[] args) => }); } } + + + + diff --git a/Getting Started/AWS/Console Application/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs b/Getting Started/AWS/Console Application/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs index f732b231..ed73d034 100644 --- a/Getting Started/AWS/Console Application/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs +++ b/Getting Started/AWS/Console Application/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs @@ -49,3 +49,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/AWS/Console Application/Create Excel/CreateExcel/Program.cs b/Getting Started/AWS/Console Application/Create Excel/CreateExcel/Program.cs index 717b9ea2..abd3a1f3 100644 --- a/Getting Started/AWS/Console Application/Create Excel/CreateExcel/Program.cs +++ b/Getting Started/AWS/Console Application/Create Excel/CreateExcel/Program.cs @@ -49,3 +49,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/AWS/Console Application/Edit Excel/EditExcel/Program.cs b/Getting Started/AWS/Console Application/Edit Excel/EditExcel/Program.cs index 19eb0ff6..a7e0affc 100644 --- a/Getting Started/AWS/Console Application/Edit Excel/EditExcel/Program.cs +++ b/Getting Started/AWS/Console Application/Edit Excel/EditExcel/Program.cs @@ -49,3 +49,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Azure App Service/Convert-Excel-to-PDF/Convert-Excel-to-PDF/Program.cs b/Getting Started/Azure App Service/Convert-Excel-to-PDF/Convert-Excel-to-PDF/Program.cs index 07274680..df3846b1 100644 --- a/Getting Started/Azure App Service/Convert-Excel-to-PDF/Convert-Excel-to-PDF/Program.cs +++ b/Getting Started/Azure App Service/Convert-Excel-to-PDF/Convert-Excel-to-PDF/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Getting Started/Azure App Service/Convert_Excel_to_Image/Convert_Excel_to_Image/Program.cs b/Getting Started/Azure App Service/Convert_Excel_to_Image/Convert_Excel_to_Image/Program.cs index 07274680..df3846b1 100644 --- a/Getting Started/Azure App Service/Convert_Excel_to_Image/Convert_Excel_to_Image/Program.cs +++ b/Getting Started/Azure App Service/Convert_Excel_to_Image/Convert_Excel_to_Image/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Console_App.csproj b/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Console_App.csproj index 91b464af..9ee5aee9 100644 --- a/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Console_App.csproj +++ b/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Console_App.csproj @@ -1,4 +1,4 @@ - + Exe @@ -7,4 +7,11 @@ enable + + + Always + + + + diff --git a/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Output/.gitkeep b/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Program.cs b/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Program.cs index 3f574546..e8713fb5 100644 --- a/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Program.cs +++ b/Getting Started/Azure V1 Function/Convert Excel to Image/Console_App/Console_App/Program.cs @@ -46,3 +46,7 @@ { throw; } + + + + diff --git a/Getting Started/Azure V1 Function/Convert Excel to PDF/Console_App/Console_App/Program.cs b/Getting Started/Azure V1 Function/Convert Excel to PDF/Console_App/Console_App/Program.cs index 304918f2..f35e1387 100644 --- a/Getting Started/Azure V1 Function/Convert Excel to PDF/Console_App/Console_App/Program.cs +++ b/Getting Started/Azure V1 Function/Convert Excel to PDF/Console_App/Console_App/Program.cs @@ -46,3 +46,7 @@ { throw; } + + + + diff --git a/Getting Started/Azure V1 Function/Create Excel/Console_App/Console_App/Program.cs b/Getting Started/Azure V1 Function/Create Excel/Console_App/Console_App/Program.cs index 1e6e33d8..9644f946 100644 --- a/Getting Started/Azure V1 Function/Create Excel/Console_App/Console_App/Program.cs +++ b/Getting Started/Azure V1 Function/Create Excel/Console_App/Console_App/Program.cs @@ -42,3 +42,7 @@ { throw; } + + + + diff --git a/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Console_App.csproj b/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Console_App.csproj index 91b464af..9ee5aee9 100644 --- a/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Console_App.csproj +++ b/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Console_App.csproj @@ -1,4 +1,4 @@ - + Exe @@ -7,4 +7,11 @@ enable + + + Always + + + + diff --git a/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Output/.gitkeep b/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Program.cs b/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Program.cs index 90dd275b..2d0570fe 100644 --- a/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Program.cs +++ b/Getting Started/Azure V1 Function/Edit Excel/Console_App/Console_App/Program.cs @@ -46,3 +46,7 @@ { throw; } + + + + diff --git a/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Console_App.csproj b/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Console_App.csproj index 26cee705..6fd1de8e 100644 --- a/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Console_App.csproj +++ b/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Console_App.csproj @@ -50,4 +50,10 @@ - \ No newline at end of file + + + Always + + + + diff --git a/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Output/.gitkeep b/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Program.cs b/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Program.cs index cf5eab25..ff28a622 100644 --- a/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Program.cs +++ b/Getting Started/Azure V4 Function/Convert Excel to Image/Console_App/Console_App/Program.cs @@ -59,3 +59,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Azure V4 Function/Convert Excel to PDF/Console_App/Console_App/Program.cs b/Getting Started/Azure V4 Function/Convert Excel to PDF/Console_App/Console_App/Program.cs index ce1a56da..4ee57f64 100644 --- a/Getting Started/Azure V4 Function/Convert Excel to PDF/Console_App/Console_App/Program.cs +++ b/Getting Started/Azure V4 Function/Convert Excel to PDF/Console_App/Console_App/Program.cs @@ -59,3 +59,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Azure V4 Function/Create Excel/Console_App/Console_App/Program.cs b/Getting Started/Azure V4 Function/Create Excel/Console_App/Console_App/Program.cs index eb6ac56e..51cecc8e 100644 --- a/Getting Started/Azure V4 Function/Create Excel/Console_App/Console_App/Program.cs +++ b/Getting Started/Azure V4 Function/Create Excel/Console_App/Console_App/Program.cs @@ -55,3 +55,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Console_App.csproj b/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Console_App.csproj index 26cee705..6fd1de8e 100644 --- a/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Console_App.csproj +++ b/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Console_App.csproj @@ -50,4 +50,10 @@ - \ No newline at end of file + + + Always + + + + diff --git a/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Output/.gitkeep b/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Program.cs b/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Program.cs index 4fb8bf83..66ed6de2 100644 --- a/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Program.cs +++ b/Getting Started/Azure V4 Function/Edit Excel/Console_App/Console_App/Program.cs @@ -59,3 +59,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Blazor Web App/Server Side/Create_Excel/Create_Excel/Program.cs b/Getting Started/Blazor Web App/Server Side/Create_Excel/Create_Excel/Program.cs index 716b588c..20001728 100644 --- a/Getting Started/Blazor Web App/Server Side/Create_Excel/Create_Excel/Program.cs +++ b/Getting Started/Blazor Web App/Server Side/Create_Excel/Create_Excel/Program.cs @@ -1,4 +1,4 @@ -using Create_Excel.Components; +using Create_Excel.Components; var builder = WebApplication.CreateBuilder(args); @@ -25,3 +25,7 @@ .AddInteractiveServerRenderMode(); app.Run(); + + + + diff --git a/Getting Started/Blazor Web App/Server Side/Edit_Excel/Edit_Excel/Program.cs b/Getting Started/Blazor Web App/Server Side/Edit_Excel/Edit_Excel/Program.cs index 34c6913b..5a72a4fd 100644 --- a/Getting Started/Blazor Web App/Server Side/Edit_Excel/Edit_Excel/Program.cs +++ b/Getting Started/Blazor Web App/Server Side/Edit_Excel/Edit_Excel/Program.cs @@ -1,4 +1,4 @@ -using Edit_Excel.Components; +using Edit_Excel.Components; var builder = WebApplication.CreateBuilder(args); @@ -26,3 +26,7 @@ .AddInteractiveServerRenderMode(); app.Run(); + + + + diff --git a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Program.cs b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Program.cs index 039cc9b9..b406f7b4 100644 --- a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Program.cs +++ b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Program.cs @@ -1,4 +1,4 @@ -using Convert_Excel_to_PDF; +using Convert_Excel_to_PDF; using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; @@ -9,3 +9,7 @@ builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); await builder.Build().RunAsync(); + + + + diff --git a/Getting Started/Blazor/Client Side/Create Excel/Create Excel/Program.cs b/Getting Started/Blazor/Client Side/Create Excel/Create Excel/Program.cs index 568005c2..a04f726e 100644 --- a/Getting Started/Blazor/Client Side/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Blazor/Client Side/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; @@ -23,3 +23,7 @@ public static async Task Main(string[] args) } } } + + + + diff --git a/Getting Started/Blazor/Client Side/EditExcel/EditExcel/Program.cs b/Getting Started/Blazor/Client Side/EditExcel/EditExcel/Program.cs index 6c7f9a40..d4c148ea 100644 --- a/Getting Started/Blazor/Client Side/EditExcel/EditExcel/Program.cs +++ b/Getting Started/Blazor/Client Side/EditExcel/EditExcel/Program.cs @@ -1,4 +1,4 @@ -using EditExcel; +using EditExcel; using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; @@ -9,3 +9,7 @@ builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); await builder.Build().RunAsync(); + + + + diff --git a/Getting Started/Blazor/Client Side/ExcelToImage/ExcelToImage/Program.cs b/Getting Started/Blazor/Client Side/ExcelToImage/ExcelToImage/Program.cs index a9889eda..9899f2bc 100644 --- a/Getting Started/Blazor/Client Side/ExcelToImage/ExcelToImage/Program.cs +++ b/Getting Started/Blazor/Client Side/ExcelToImage/ExcelToImage/Program.cs @@ -1,4 +1,4 @@ -using ExcelToImage; +using ExcelToImage; using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; @@ -9,3 +9,7 @@ builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); await builder.Build().RunAsync(); + + + + diff --git a/Getting Started/Blazor/Client Side/ExcelToPDF/ExcelToPDF/Program.cs b/Getting Started/Blazor/Client Side/ExcelToPDF/ExcelToPDF/Program.cs index aa381c05..0d05b171 100644 --- a/Getting Started/Blazor/Client Side/ExcelToPDF/ExcelToPDF/Program.cs +++ b/Getting Started/Blazor/Client Side/ExcelToPDF/ExcelToPDF/Program.cs @@ -1,4 +1,4 @@ -using ExcelToPDF; +using ExcelToPDF; using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; @@ -9,3 +9,7 @@ builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); await builder.Build().RunAsync(); + + + + diff --git a/Getting Started/Blazor/Server Side/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs b/Getting Started/Blazor/Server Side/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs index bb93c56b..d0d42f88 100644 --- a/Getting Started/Blazor/Server Side/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs +++ b/Getting Started/Blazor/Server Side/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs @@ -1,4 +1,4 @@ -using Convert_Excel_to_PDF.Data; +using Convert_Excel_to_PDF.Data; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Web; @@ -30,3 +30,7 @@ app.MapFallbackToPage("/_Host"); app.Run(); + + + + diff --git a/Getting Started/Blazor/Server Side/Create Excel/Create Excel/Program.cs b/Getting Started/Blazor/Server Side/Create Excel/Create Excel/Program.cs index 2676ae26..cff8174a 100644 --- a/Getting Started/Blazor/Server Side/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Blazor/Server Side/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -using Microsoft.AspNetCore; +using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; @@ -26,3 +26,7 @@ public static IHostBuilder CreateHostBuilder(string[] args) => }); } } + + + + diff --git a/Getting Started/Blazor/Server Side/Edit Excel/Edit Excel/Program.cs b/Getting Started/Blazor/Server Side/Edit Excel/Edit Excel/Program.cs index 7022fdb3..f9bd2c64 100644 --- a/Getting Started/Blazor/Server Side/Edit Excel/Edit Excel/Program.cs +++ b/Getting Started/Blazor/Server Side/Edit Excel/Edit Excel/Program.cs @@ -1,4 +1,4 @@ -using Microsoft.AspNetCore; +using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; @@ -26,3 +26,7 @@ public static IHostBuilder CreateHostBuilder(string[] args) => }); } } + + + + diff --git a/Getting Started/Console/.NET Framework/Create Excel/Create Excel/Create Excel.csproj b/Getting Started/Console/.NET Framework/Create Excel/Create Excel/Create Excel.csproj index 8a5a81d1..071da963 100644 --- a/Getting Started/Console/.NET Framework/Create Excel/Create Excel/Create Excel.csproj +++ b/Getting Started/Console/.NET Framework/Create Excel/Create Excel/Create Excel.csproj @@ -64,4 +64,4 @@ - \ No newline at end of file + diff --git a/Getting Started/Console/.NET Framework/Create Excel/Create Excel/Program.cs b/Getting Started/Console/.NET Framework/Create Excel/Create Excel/Program.cs index 766c8124..f7356ed2 100644 --- a/Getting Started/Console/.NET Framework/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Console/.NET Framework/Create Excel/Create Excel/Program.cs @@ -193,3 +193,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Console/.NET/Create Excel/Create Excel/Create Excel.csproj b/Getting Started/Console/.NET/Create Excel/Create Excel/Create Excel.csproj index 361a262a..f7ae2355 100644 --- a/Getting Started/Console/.NET/Create Excel/Create Excel/Create Excel.csproj +++ b/Getting Started/Console/.NET/Create Excel/Create Excel/Create Excel.csproj @@ -1,4 +1,4 @@ - + Exe @@ -21,4 +21,15 @@ + + + Always + + + + + + + + diff --git a/Getting Started/Console/.NET/Create Excel/Create Excel/Program.cs b/Getting Started/Console/.NET/Create Excel/Create Excel/Program.cs index b1806cf3..b0e233e9 100644 --- a/Getting Started/Console/.NET/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Console/.NET/Create Excel/Create Excel/Program.cs @@ -187,4 +187,7 @@ static void Main(string[] args) } } } -} \ No newline at end of file +} + + + diff --git a/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj b/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj index 85961f27..fb162f7c 100644 --- a/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj +++ b/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj @@ -1,4 +1,4 @@ - + Exe @@ -13,4 +13,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Output/.gitkeep b/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs b/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs index 6b516407..889fd8ae 100644 --- a/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs +++ b/Getting Started/Docker/Alpine/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs @@ -30,3 +30,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/Alpine/Create Excel/Create Excel/Create Excel.csproj b/Getting Started/Docker/Alpine/Create Excel/Create Excel/Create Excel.csproj index b5601c0a..b71ce7e0 100644 --- a/Getting Started/Docker/Alpine/Create Excel/Create Excel/Create Excel.csproj +++ b/Getting Started/Docker/Alpine/Create Excel/Create Excel/Create Excel.csproj @@ -11,4 +11,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Alpine/Create Excel/Create Excel/Output/.gitkeep b/Getting Started/Docker/Alpine/Create Excel/Create Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Alpine/Create Excel/Create Excel/Program.cs b/Getting Started/Docker/Alpine/Create Excel/Create Excel/Program.cs index 832bbf73..8527970f 100644 --- a/Getting Started/Docker/Alpine/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Docker/Alpine/Create Excel/Create Excel/Program.cs @@ -187,3 +187,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Edit Excel.csproj b/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Edit Excel.csproj index 456665d6..a19bef0a 100644 --- a/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Edit Excel.csproj +++ b/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Edit Excel.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Output/.gitkeep b/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Program.cs b/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Program.cs index b4831cb1..c094eb10 100644 --- a/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Program.cs +++ b/Getting Started/Docker/Alpine/Edit Excel/Edit Excel/Program.cs @@ -38,3 +38,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj b/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj index 2d022925..154ba1ec 100644 --- a/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj +++ b/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj @@ -1,4 +1,4 @@ - + Exe @@ -13,4 +13,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Output/.gitkeep b/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs b/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs index 73884210..bf731cc8 100644 --- a/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs +++ b/Getting Started/Docker/Debian/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs @@ -31,3 +31,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/Debian/Create Excel/Create Excel/Create Excel.csproj b/Getting Started/Docker/Debian/Create Excel/Create Excel/Create Excel.csproj index 2dbbf5d1..a5bb08bc 100644 --- a/Getting Started/Docker/Debian/Create Excel/Create Excel/Create Excel.csproj +++ b/Getting Started/Docker/Debian/Create Excel/Create Excel/Create Excel.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Debian/Create Excel/Create Excel/Output/.gitkeep b/Getting Started/Docker/Debian/Create Excel/Create Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Debian/Create Excel/Create Excel/Program.cs b/Getting Started/Docker/Debian/Create Excel/Create Excel/Program.cs index cc68b58f..c8e50e68 100644 --- a/Getting Started/Docker/Debian/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Docker/Debian/Create Excel/Create Excel/Program.cs @@ -188,3 +188,7 @@ static void Main(string[] args) } } + + + + diff --git a/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Edit Excel.csproj b/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Edit Excel.csproj index 456665d6..a19bef0a 100644 --- a/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Edit Excel.csproj +++ b/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Edit Excel.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Output/.gitkeep b/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Program.cs b/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Program.cs index b4831cb1..c094eb10 100644 --- a/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Program.cs +++ b/Getting Started/Docker/Debian/Edit Excel/Edit Excel/Program.cs @@ -38,3 +38,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj b/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj index 2d022925..154ba1ec 100644 --- a/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj +++ b/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj @@ -1,4 +1,4 @@ - + Exe @@ -13,4 +13,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Output/.gitkeep b/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs b/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs index 73884210..bf731cc8 100644 --- a/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs +++ b/Getting Started/Docker/RHEL/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs @@ -31,3 +31,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/RHEL/Create Excel/Create Excel/Create Excel.csproj b/Getting Started/Docker/RHEL/Create Excel/Create Excel/Create Excel.csproj index 2dbbf5d1..a5bb08bc 100644 --- a/Getting Started/Docker/RHEL/Create Excel/Create Excel/Create Excel.csproj +++ b/Getting Started/Docker/RHEL/Create Excel/Create Excel/Create Excel.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/RHEL/Create Excel/Create Excel/Output/.gitkeep b/Getting Started/Docker/RHEL/Create Excel/Create Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/RHEL/Create Excel/Create Excel/Program.cs b/Getting Started/Docker/RHEL/Create Excel/Create Excel/Program.cs index 832bbf73..8527970f 100644 --- a/Getting Started/Docker/RHEL/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Docker/RHEL/Create Excel/Create Excel/Program.cs @@ -187,3 +187,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Edit Excel.csproj b/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Edit Excel.csproj index 456665d6..a19bef0a 100644 --- a/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Edit Excel.csproj +++ b/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Edit Excel.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Output/.gitkeep b/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Program.cs b/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Program.cs index b4831cb1..c094eb10 100644 --- a/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Program.cs +++ b/Getting Started/Docker/RHEL/Edit Excel/Edit Excel/Program.cs @@ -38,3 +38,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj b/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj index 2d022925..154ba1ec 100644 --- a/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj +++ b/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj @@ -1,4 +1,4 @@ - + Exe @@ -13,4 +13,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Output/.gitkeep b/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs b/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs index 73884210..bf731cc8 100644 --- a/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs +++ b/Getting Started/Docker/Ubuntu/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs @@ -31,3 +31,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Create Excel.csproj b/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Create Excel.csproj index 2dbbf5d1..a5bb08bc 100644 --- a/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Create Excel.csproj +++ b/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Create Excel.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Output/.gitkeep b/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Program.cs b/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Program.cs index 832bbf73..8527970f 100644 --- a/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Docker/Ubuntu/Create Excel/Create Excel/Program.cs @@ -187,3 +187,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Edit Excel.csproj b/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Edit Excel.csproj index 456665d6..a19bef0a 100644 --- a/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Edit Excel.csproj +++ b/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Edit Excel.csproj @@ -1,4 +1,4 @@ - + Exe @@ -12,4 +12,12 @@ + + + Always + + + + + diff --git a/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Output/.gitkeep b/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Program.cs b/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Program.cs index b0962bc0..8ab8d96c 100644 --- a/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Program.cs +++ b/Getting Started/Docker/Ubuntu/Edit Excel/Edit Excel/Program.cs @@ -37,3 +37,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Getting Started/Windows Forms/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs b/Getting Started/Windows Forms/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs index 93b5341f..642719d4 100644 --- a/Getting Started/Windows Forms/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs +++ b/Getting Started/Windows Forms/Convert Excel to PDF/Convert-Excel-to-PDF/Program.cs @@ -20,3 +20,7 @@ static void Main() } } } + + + + diff --git a/Getting Started/Windows Forms/Create Excel/Create Excel/Program.cs b/Getting Started/Windows Forms/Create Excel/Create Excel/Program.cs index 0c83e351..5d3fadf6 100644 --- a/Getting Started/Windows Forms/Create Excel/Create Excel/Program.cs +++ b/Getting Started/Windows Forms/Create Excel/Create Excel/Program.cs @@ -20,3 +20,7 @@ static void Main() } } } + + + + diff --git a/Getting Started/Windows Forms/Edit Excel/Edit Excel/Program.cs b/Getting Started/Windows Forms/Edit Excel/Edit Excel/Program.cs index b7cbbd3d..3c284974 100644 --- a/Getting Started/Windows Forms/Edit Excel/Edit Excel/Program.cs +++ b/Getting Started/Windows Forms/Edit Excel/Edit Excel/Program.cs @@ -20,3 +20,7 @@ static void Main() } } } + + + + diff --git a/Import Data to Template/Conditional Formatting/.NET/Conditional Formatting/Conditional Formatting/Conditional Formatting.csproj b/Import Data to Template/Conditional Formatting/.NET/Conditional Formatting/Conditional Formatting/Conditional Formatting.csproj index d9e740d3..e26b3142 100644 --- a/Import Data to Template/Conditional Formatting/.NET/Conditional Formatting/Conditional Formatting/Conditional Formatting.csproj +++ b/Import Data to Template/Conditional Formatting/.NET/Conditional Formatting/Conditional Formatting/Conditional Formatting.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Import Data to Template/Conditional Formatting/.NET/Conditional Formatting/Conditional Formatting/Program.cs b/Import Data to Template/Conditional Formatting/.NET/Conditional Formatting/Conditional Formatting/Program.cs index 73493b0d..e3ce1b46 100644 --- a/Import Data to Template/Conditional Formatting/.NET/Conditional Formatting/Conditional Formatting/Program.cs +++ b/Import Data to Template/Conditional Formatting/.NET/Conditional Formatting/Conditional Formatting/Program.cs @@ -121,7 +121,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ConditionalFormatting.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ConditionalFormatting.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -164,3 +164,7 @@ public Sales(string name, int salesJanJun, int salesJulDec, int change) } } + + + + diff --git a/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/Import Data Table.csproj b/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/Import Data Table.csproj index a47a5ce2..82712f34 100644 --- a/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/Import Data Table.csproj +++ b/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/Import Data Table.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/Program.cs b/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/Program.cs index 490279b4..5e3aa466 100644 --- a/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/Program.cs +++ b/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/Program.cs @@ -42,7 +42,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportDataTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportDataTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -54,3 +54,7 @@ static void Main(string[] args) } } + + + + diff --git a/Import Data to Template/Import Nested Collection/.NET/Import Nested Collection/Import Nested Collection/Import Nested Collection.csproj b/Import Data to Template/Import Nested Collection/.NET/Import Nested Collection/Import Nested Collection/Import Nested Collection.csproj index 30d31eea..516debab 100644 --- a/Import Data to Template/Import Nested Collection/.NET/Import Nested Collection/Import Nested Collection/Import Nested Collection.csproj +++ b/Import Data to Template/Import Nested Collection/.NET/Import Nested Collection/Import Nested Collection/Import Nested Collection.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Import Data to Template/Import Nested Collection/.NET/Import Nested Collection/Import Nested Collection/Program.cs b/Import Data to Template/Import Nested Collection/.NET/Import Nested Collection/Import Nested Collection/Program.cs index 231f2b6a..c04c582c 100644 --- a/Import Data to Template/Import Nested Collection/.NET/Import Nested Collection/Import Nested Collection/Program.cs +++ b/Import Data to Template/Import Nested Collection/.NET/Import Nested Collection/Import Nested Collection/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportNestedCollection.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportNestedCollection.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -97,3 +97,7 @@ public Order(int id, double price) } + + + + diff --git a/Import Data to Template/Import with Hyperlinks/.NET/Import with Hyperlinks/Import with Hyperlinks/Import with Hyperlinks.csproj b/Import Data to Template/Import with Hyperlinks/.NET/Import with Hyperlinks/Import with Hyperlinks/Import with Hyperlinks.csproj index f0d02ff6..2c7fa37c 100644 --- a/Import Data to Template/Import with Hyperlinks/.NET/Import with Hyperlinks/Import with Hyperlinks/Import with Hyperlinks.csproj +++ b/Import Data to Template/Import with Hyperlinks/.NET/Import with Hyperlinks/Import with Hyperlinks/Import with Hyperlinks.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Import Data to Template/Import with Hyperlinks/.NET/Import with Hyperlinks/Import with Hyperlinks/Program.cs b/Import Data to Template/Import with Hyperlinks/.NET/Import with Hyperlinks/Import with Hyperlinks/Program.cs index f7a3dd1b..b16bb874 100644 --- a/Import Data to Template/Import with Hyperlinks/.NET/Import with Hyperlinks/Import with Hyperlinks/Program.cs +++ b/Import Data to Template/Import with Hyperlinks/.NET/Import with Hyperlinks/Import with Hyperlinks/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HyperlinkWithMarker.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HyperlinkWithMarker.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -96,3 +96,7 @@ public class Company } } + + + + diff --git a/Import Data to Template/Set Template Marker/.NET/Set Template Marker/Set Template Marker/Program.cs b/Import Data to Template/Set Template Marker/.NET/Set Template Marker/Set Template Marker/Program.cs index 7151a3cb..d0c5d270 100644 --- a/Import Data to Template/Set Template Marker/.NET/Set Template Marker/Set Template Marker/Program.cs +++ b/Import Data to Template/Set Template Marker/.NET/Set Template Marker/Set Template Marker/Program.cs @@ -34,7 +34,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("TemplateMarker.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/TemplateMarker.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -46,3 +46,7 @@ static void Main(string[] args) } } + + + + diff --git a/Import Data to Template/Set Template Marker/.NET/Set Template Marker/Set Template Marker/Set Template Marker.csproj b/Import Data to Template/Set Template Marker/.NET/Set Template Marker/Set Template Marker/Set Template Marker.csproj index 39574dac..99460f70 100644 --- a/Import Data to Template/Set Template Marker/.NET/Set Template Marker/Set Template Marker/Set Template Marker.csproj +++ b/Import Data to Template/Set Template Marker/.NET/Set Template Marker/Set Template Marker/Set Template Marker.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Import Data to Template/TemplateMarker-Horizontal-Argument/.NET/TemplateMarker-Horizontal-Argument/TemplateMarker-Horizontal-Argument/Program.cs b/Import Data to Template/TemplateMarker-Horizontal-Argument/.NET/TemplateMarker-Horizontal-Argument/TemplateMarker-Horizontal-Argument/Program.cs index 07274680..df3846b1 100644 --- a/Import Data to Template/TemplateMarker-Horizontal-Argument/.NET/TemplateMarker-Horizontal-Argument/TemplateMarker-Horizontal-Argument/Program.cs +++ b/Import Data to Template/TemplateMarker-Horizontal-Argument/.NET/TemplateMarker-Horizontal-Argument/TemplateMarker-Horizontal-Argument/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Import Data to Template/TemplateMarker-Jump-Argument/.NET/TemplateMarker-Jump-Argument/TemplateMarker-Jump-Argument/Program.cs b/Import Data to Template/TemplateMarker-Jump-Argument/.NET/TemplateMarker-Jump-Argument/TemplateMarker-Jump-Argument/Program.cs index 07274680..df3846b1 100644 --- a/Import Data to Template/TemplateMarker-Jump-Argument/.NET/TemplateMarker-Jump-Argument/TemplateMarker-Jump-Argument/Program.cs +++ b/Import Data to Template/TemplateMarker-Jump-Argument/.NET/TemplateMarker-Jump-Argument/TemplateMarker-Jump-Argument/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Import Data to Template/TemplateMarker-Vertical-Argument/.NET/TemplateMarker-Vertical-Argument/TemplateMarker-Vertical-Argument/Program.cs b/Import Data to Template/TemplateMarker-Vertical-Argument/.NET/TemplateMarker-Vertical-Argument/TemplateMarker-Vertical-Argument/Program.cs index 07274680..df3846b1 100644 --- a/Import Data to Template/TemplateMarker-Vertical-Argument/.NET/TemplateMarker-Vertical-Argument/TemplateMarker-Vertical-Argument/Program.cs +++ b/Import Data to Template/TemplateMarker-Vertical-Argument/.NET/TemplateMarker-Vertical-Argument/TemplateMarker-Vertical-Argument/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Import Data to Template/TemplateMarker-with-CopyRage-Argument/.NET/TemplateMarker-with-ConditionalFormatting/TemplateMarker-with-ConditionalFormatting/Program.cs b/Import Data to Template/TemplateMarker-with-CopyRage-Argument/.NET/TemplateMarker-with-ConditionalFormatting/TemplateMarker-with-ConditionalFormatting/Program.cs index 07274680..df3846b1 100644 --- a/Import Data to Template/TemplateMarker-with-CopyRage-Argument/.NET/TemplateMarker-with-ConditionalFormatting/TemplateMarker-with-ConditionalFormatting/Program.cs +++ b/Import Data to Template/TemplateMarker-with-CopyRage-Argument/.NET/TemplateMarker-with-ConditionalFormatting/TemplateMarker-with-ConditionalFormatting/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Import Data to Template/TemplateMarker-with-Formulas/.NET/TemplateMarker-with-Formulas/TemplateMarker-with-Formulas/Program.cs b/Import Data to Template/TemplateMarker-with-Formulas/.NET/TemplateMarker-with-Formulas/TemplateMarker-with-Formulas/Program.cs index 07274680..df3846b1 100644 --- a/Import Data to Template/TemplateMarker-with-Formulas/.NET/TemplateMarker-with-Formulas/TemplateMarker-with-Formulas/Program.cs +++ b/Import Data to Template/TemplateMarker-with-Formulas/.NET/TemplateMarker-with-Formulas/TemplateMarker-with-Formulas/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Import Data to Template/TemplateMarker-with-Images/.NET/TemplateMarker-with-Images/TemplateMarker-with-Images/Program.cs b/Import Data to Template/TemplateMarker-with-Images/.NET/TemplateMarker-with-Images/TemplateMarker-with-Images/Program.cs index 07274680..df3846b1 100644 --- a/Import Data to Template/TemplateMarker-with-Images/.NET/TemplateMarker-with-Images/TemplateMarker-with-Images/Program.cs +++ b/Import Data to Template/TemplateMarker-with-Images/.NET/TemplateMarker-with-Images/TemplateMarker-with-Images/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Import Data to Template/TemplateMarker-with-Insert-Argument/.NET/TemplateMarker-with-Insert-Argument/TemplateMarker-with-Insert-Argument/Program.cs b/Import Data to Template/TemplateMarker-with-Insert-Argument/.NET/TemplateMarker-with-Insert-Argument/TemplateMarker-with-Insert-Argument/Program.cs index 07274680..df3846b1 100644 --- a/Import Data to Template/TemplateMarker-with-Insert-Argument/.NET/TemplateMarker-with-Insert-Argument/TemplateMarker-with-Insert-Argument/Program.cs +++ b/Import Data to Template/TemplateMarker-with-Insert-Argument/.NET/TemplateMarker-with-Insert-Argument/TemplateMarker-with-Insert-Argument/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Import Data to Template/TemplateMarker/.NET/TemplateMarker/TemplateMarker/Program.cs b/Import Data to Template/TemplateMarker/.NET/TemplateMarker/TemplateMarker/Program.cs index 07274680..df3846b1 100644 --- a/Import Data to Template/TemplateMarker/.NET/TemplateMarker/TemplateMarker/Program.cs +++ b/Import Data to Template/TemplateMarker/.NET/TemplateMarker/TemplateMarker/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Array to Worksheet.csproj b/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Array to Worksheet.csproj index 863798c7..5a4e9af0 100644 --- a/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Array to Worksheet.csproj +++ b/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Array to Worksheet.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Output/.gitkeep b/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Program.cs b/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Program.cs index 5b9400f4..d215aed2 100644 --- a/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Program.cs +++ b/Import and Export Data/Array to Worksheet/.NET/Array to Worksheet/Array to Worksheet/Program.cs @@ -21,20 +21,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ArrayToWorksheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ArrayToWorksheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ArrayToWorksheet.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/CollectionObjects to Worksheet.csproj b/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/CollectionObjects to Worksheet.csproj index ce1d0050..541f8265 100644 --- a/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/CollectionObjects to Worksheet.csproj +++ b/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/CollectionObjects to Worksheet.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Output/.gitkeep b/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Program.cs b/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Program.cs index e35ddc29..f281bd5a 100644 --- a/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Program.cs +++ b/Import and Export Data/CollectionObjects to Worksheet/.NET/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Program.cs @@ -24,19 +24,12 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportCollectionObjects.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportCollectionObjects.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ImportCollectionObjects.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } //Gets a list of sales reports @@ -68,3 +61,7 @@ public Customer(string name, string janToJun, string julToDec) } } } + + + + diff --git a/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/DataColumn to Worksheet.csproj b/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/DataColumn to Worksheet.csproj index 9fef1559..bf18dd0e 100644 --- a/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/DataColumn to Worksheet.csproj +++ b/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/DataColumn to Worksheet.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/Output/.gitkeep b/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/Program.cs b/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/Program.cs index 59728093..f5a4456b 100644 --- a/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/Program.cs +++ b/Import and Export Data/DataColumn to Worksheet/.NET/DataColumn to Worksheet/DataColumn to Worksheet/Program.cs @@ -26,19 +26,12 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportDataColumn.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportDataColumn.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ImportDataColumn.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } private static DataTable SampleDataTable() @@ -61,3 +54,7 @@ private static DataTable SampleDataTable() } } } + + + + diff --git a/Import and Export Data/DataGridView to Worksheet/NET Framework/DataGridView to Worksheet/DataGridView to Worksheet/Program.cs b/Import and Export Data/DataGridView to Worksheet/NET Framework/DataGridView to Worksheet/DataGridView to Worksheet/Program.cs index 53274b2d..0dbb0f0b 100644 --- a/Import and Export Data/DataGridView to Worksheet/NET Framework/DataGridView to Worksheet/DataGridView to Worksheet/Program.cs +++ b/Import and Export Data/DataGridView to Worksheet/NET Framework/DataGridView to Worksheet/DataGridView to Worksheet/Program.cs @@ -20,3 +20,7 @@ static void Main() } } } + + + + diff --git a/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/DataTable to Worksheet.csproj b/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/DataTable to Worksheet.csproj index 5e8d6e49..d78e05cf 100644 --- a/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/DataTable to Worksheet.csproj +++ b/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/DataTable to Worksheet.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/Output/.gitkeep b/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/Program.cs b/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/Program.cs index a4293f8d..21ff38ec 100644 --- a/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/Program.cs +++ b/Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet/Program.cs @@ -25,19 +25,12 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportDataTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportDataTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ImportDataTable.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } private static DataTable SampleDataTable() @@ -60,3 +53,7 @@ private static DataTable SampleDataTable() } } } + + + + diff --git a/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/DataView to Worksheet.csproj b/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/DataView to Worksheet.csproj index 5839e7e9..a72807bc 100644 --- a/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/DataView to Worksheet.csproj +++ b/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/DataView to Worksheet.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/Output/.gitkeep b/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/Program.cs b/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/Program.cs index a1e665d7..efdaadc6 100644 --- a/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/Program.cs +++ b/Import and Export Data/DataView to Worksheet/.NET/DataView to Worksheet/DataView to Worksheet/Program.cs @@ -26,19 +26,12 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportDataView.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportDataView.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ImportDataView.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } private static DataTable SampleDataTable() @@ -61,3 +54,7 @@ private static DataTable SampleDataTable() } } } + + + + diff --git a/Import and Export Data/Grouping Options/.NET/Grouping Options/Grouping Options/Grouping Options.csproj b/Import and Export Data/Grouping Options/.NET/Grouping Options/Grouping Options/Grouping Options.csproj index ccbe3fc2..02371c9a 100644 --- a/Import and Export Data/Grouping Options/.NET/Grouping Options/Grouping Options/Grouping Options.csproj +++ b/Import and Export Data/Grouping Options/.NET/Grouping Options/Grouping Options/Grouping Options.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Import and Export Data/Grouping Options/.NET/Grouping Options/Grouping Options/Program.cs b/Import and Export Data/Grouping Options/.NET/Grouping Options/Grouping Options/Program.cs index 586d3c1c..ed590d0b 100644 --- a/Import and Export Data/Grouping Options/.NET/Grouping Options/Grouping Options/Program.cs +++ b/Import and Export Data/Grouping Options/.NET/Grouping Options/Grouping Options/Program.cs @@ -52,7 +52,7 @@ private static void ImportData() #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportData.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportData.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -212,3 +212,7 @@ public class BrandObject } } + + + + diff --git a/Import and Export Data/HTML Table to Worksheet/.NET/HTML Table to Worksheet/HTML Table to Worksheet/HTML Table to Worksheet.csproj b/Import and Export Data/HTML Table to Worksheet/.NET/HTML Table to Worksheet/HTML Table to Worksheet/HTML Table to Worksheet.csproj index f4155778..67cf291c 100644 --- a/Import and Export Data/HTML Table to Worksheet/.NET/HTML Table to Worksheet/HTML Table to Worksheet/HTML Table to Worksheet.csproj +++ b/Import and Export Data/HTML Table to Worksheet/.NET/HTML Table to Worksheet/HTML Table to Worksheet/HTML Table to Worksheet.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Import and Export Data/HTML Table to Worksheet/.NET/HTML Table to Worksheet/HTML Table to Worksheet/Program.cs b/Import and Export Data/HTML Table to Worksheet/.NET/HTML Table to Worksheet/HTML Table to Worksheet/Program.cs index 38bea5e8..fec38944 100644 --- a/Import and Export Data/HTML Table to Worksheet/.NET/HTML Table to Worksheet/HTML Table to Worksheet/Program.cs +++ b/Import and Export Data/HTML Table to Worksheet/.NET/HTML Table to Worksheet/HTML Table to Worksheet/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HTMLTabletoWorksheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HTMLTabletoWorksheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -32,3 +32,7 @@ static void Main(string[] args) } } + + + + diff --git a/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Import Data Options.csproj b/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Import Data Options.csproj index fdcc7f20..9342743c 100644 --- a/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Import Data Options.csproj +++ b/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Import Data Options.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Output/.gitkeep b/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Program.cs b/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Program.cs index 4ed7074b..9f482f04 100644 --- a/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Program.cs +++ b/Import and Export Data/Import Data Options/.NET/Import Data Options/Import Data Options/Program.cs @@ -28,19 +28,12 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportDataOptions.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportDataOptions.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ImportDataOptions.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } //Gets a list of sales reports @@ -71,3 +64,7 @@ public Customer(string name, string janToJun, string julToDec) } } } + + + + diff --git a/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Import with Hyperlink.csproj b/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Import with Hyperlink.csproj index 812e7221..e58f5c57 100644 --- a/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Import with Hyperlink.csproj +++ b/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Import with Hyperlink.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Output/.gitkeep b/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Program.cs b/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Program.cs index 691237e8..2875dfc9 100644 --- a/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Program.cs +++ b/Import and Export Data/Import with Hyperlink/.NET/Import with Hyperlink/Import with Hyperlink/Program.cs @@ -21,19 +21,12 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportData.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportData.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ImportData.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } //Gets a list of company details @@ -94,3 +87,7 @@ public class Company public Hyperlink Link { get; set; } } } + + + + diff --git a/Import and Export Data/Layout Options/.NET/Layout Options/Layout Options/Layout Options.csproj b/Import and Export Data/Layout Options/.NET/Layout Options/Layout Options/Layout Options.csproj index 320d8144..da3f53ba 100644 --- a/Import and Export Data/Layout Options/.NET/Layout Options/Layout Options/Layout Options.csproj +++ b/Import and Export Data/Layout Options/.NET/Layout Options/Layout Options/Layout Options.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Import and Export Data/Layout Options/.NET/Layout Options/Layout Options/Program.cs b/Import and Export Data/Layout Options/.NET/Layout Options/Layout Options/Program.cs index 29eaebab..39170a49 100644 --- a/Import and Export Data/Layout Options/.NET/Layout Options/Layout Options/Program.cs +++ b/Import and Export Data/Layout Options/.NET/Layout Options/Layout Options/Program.cs @@ -45,7 +45,7 @@ private static void ImportData() #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImportData.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImportData.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -205,3 +205,7 @@ public class BrandObject } } + + + + diff --git a/Import and Export Data/Worksheet to CollectionObjects/.NET/Worksheet to CollectionObjects/Worksheet to CollectionObjects/Program.cs b/Import and Export Data/Worksheet to CollectionObjects/.NET/Worksheet to CollectionObjects/Worksheet to CollectionObjects/Program.cs index ca992f67..23dd75d2 100644 --- a/Import and Export Data/Worksheet to CollectionObjects/.NET/Worksheet to CollectionObjects/Worksheet to CollectionObjects/Program.cs +++ b/Import and Export Data/Worksheet to CollectionObjects/.NET/Worksheet to CollectionObjects/Worksheet to CollectionObjects/Program.cs @@ -40,3 +40,7 @@ public Report() } } + + + + diff --git a/Import and Export Data/Worksheet to CollectionObjects/.NET/Worksheet to CollectionObjects/Worksheet to CollectionObjects/Worksheet to CollectionObjects.csproj b/Import and Export Data/Worksheet to CollectionObjects/.NET/Worksheet to CollectionObjects/Worksheet to CollectionObjects/Worksheet to CollectionObjects.csproj index 29a57a25..d06760bc 100644 --- a/Import and Export Data/Worksheet to CollectionObjects/.NET/Worksheet to CollectionObjects/Worksheet to CollectionObjects/Worksheet to CollectionObjects.csproj +++ b/Import and Export Data/Worksheet to CollectionObjects/.NET/Worksheet to CollectionObjects/Worksheet to CollectionObjects/Worksheet to CollectionObjects.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Import and Export Data/Worksheet to DataTable/.NET/Worksheet to DataTable/Worksheet to DataTable/Program.cs b/Import and Export Data/Worksheet to DataTable/.NET/Worksheet to DataTable/Worksheet to DataTable/Program.cs index 9307f644..85a6397e 100644 --- a/Import and Export Data/Worksheet to DataTable/.NET/Worksheet to DataTable/Worksheet to DataTable/Program.cs +++ b/Import and Export Data/Worksheet to DataTable/.NET/Worksheet to DataTable/Worksheet to DataTable/Program.cs @@ -26,3 +26,7 @@ static void Main(string[] args) } } + + + + diff --git a/Import and Export Data/Worksheet to DataTable/.NET/Worksheet to DataTable/Worksheet to DataTable/Worksheet to DataTable.csproj b/Import and Export Data/Worksheet to DataTable/.NET/Worksheet to DataTable/Worksheet to DataTable/Worksheet to DataTable.csproj index 8cbfa110..6823c86e 100644 --- a/Import and Export Data/Worksheet to DataTable/.NET/Worksheet to DataTable/Worksheet to DataTable/Worksheet to DataTable.csproj +++ b/Import and Export Data/Worksheet to DataTable/.NET/Worksheet to DataTable/Worksheet to DataTable/Worksheet to DataTable.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Import and Export Data/Worksheet to Nested Class/.NET/Worksheet to Nested Class/Worksheet to Nested Class/Program.cs b/Import and Export Data/Worksheet to Nested Class/.NET/Worksheet to Nested Class/Worksheet to Nested Class/Program.cs index 3ea33427..34ee5668 100644 --- a/Import and Export Data/Worksheet to Nested Class/.NET/Worksheet to Nested Class/Worksheet to Nested Class/Program.cs +++ b/Import and Export Data/Worksheet to Nested Class/.NET/Worksheet to Nested Class/Worksheet to Nested Class/Program.cs @@ -57,3 +57,7 @@ public Order() } } + + + + diff --git a/Import and Export Data/Worksheet to Nested Class/.NET/Worksheet to Nested Class/Worksheet to Nested Class/Worksheet to Nested Class.csproj b/Import and Export Data/Worksheet to Nested Class/.NET/Worksheet to Nested Class/Worksheet to Nested Class/Worksheet to Nested Class.csproj index 3ea10138..f9978c81 100644 --- a/Import and Export Data/Worksheet to Nested Class/.NET/Worksheet to Nested Class/Worksheet to Nested Class/Worksheet to Nested Class.csproj +++ b/Import and Export Data/Worksheet to Nested Class/.NET/Worksheet to Nested Class/Worksheet to Nested Class/Worksheet to Nested Class.csproj @@ -14,7 +14,11 @@ Always + + Always + + diff --git a/Loading and Saving/AWS/Loading/Edit Excel/Edit Excel/Program.cs b/Loading and Saving/AWS/Loading/Edit Excel/Edit Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/AWS/Loading/Edit Excel/Edit Excel/Program.cs +++ b/Loading and Saving/AWS/Loading/Edit Excel/Edit Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/AWS/Saving/Create Excel/Create Excel/Program.cs b/Loading and Saving/AWS/Saving/Create Excel/Create Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/AWS/Saving/Create Excel/Create Excel/Program.cs +++ b/Loading and Saving/AWS/Saving/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/Azure Blob Storage/Loading/Edit Excel/Edit Excel/Program.cs b/Loading and Saving/Azure Blob Storage/Loading/Edit Excel/Edit Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/Azure Blob Storage/Loading/Edit Excel/Edit Excel/Program.cs +++ b/Loading and Saving/Azure Blob Storage/Loading/Edit Excel/Edit Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/Azure Blob Storage/Saving/Create Excel/Create Excel/Program.cs b/Loading and Saving/Azure Blob Storage/Saving/Create Excel/Create Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/Azure Blob Storage/Saving/Create Excel/Create Excel/Program.cs +++ b/Loading and Saving/Azure Blob Storage/Saving/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/Dropbox/Loading/Edit Excel/Edit Excel/Program.cs b/Loading and Saving/Dropbox/Loading/Edit Excel/Edit Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/Dropbox/Loading/Edit Excel/Edit Excel/Program.cs +++ b/Loading and Saving/Dropbox/Loading/Edit Excel/Edit Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/Dropbox/Saving/Create Excel/Create Excel/Program.cs b/Loading and Saving/Dropbox/Saving/Create Excel/Create Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/Dropbox/Saving/Create Excel/Create Excel/Program.cs +++ b/Loading and Saving/Dropbox/Saving/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/Google Cloud/Loading/Edit Excel/Edit Excel/Program.cs b/Loading and Saving/Google Cloud/Loading/Edit Excel/Edit Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/Google Cloud/Loading/Edit Excel/Edit Excel/Program.cs +++ b/Loading and Saving/Google Cloud/Loading/Edit Excel/Edit Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/Google Cloud/Saving/Create Excel/Create Excel/Program.cs b/Loading and Saving/Google Cloud/Saving/Create Excel/Create Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/Google Cloud/Saving/Create Excel/Create Excel/Program.cs +++ b/Loading and Saving/Google Cloud/Saving/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/Google Drive/Loading/Edit Excel/Edit Excel/Program.cs b/Loading and Saving/Google Drive/Loading/Edit Excel/Edit Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/Google Drive/Loading/Edit Excel/Edit Excel/Program.cs +++ b/Loading and Saving/Google Drive/Loading/Edit Excel/Edit Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/Google Drive/Saving/Create Excel/Create Excel/Program.cs b/Loading and Saving/Google Drive/Saving/Create Excel/Create Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/Google Drive/Saving/Create Excel/Create Excel/Program.cs +++ b/Loading and Saving/Google Drive/Saving/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/OneDrive/Loading/Edit Excel/Edit Excel/Program.cs b/Loading and Saving/OneDrive/Loading/Edit Excel/Edit Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/OneDrive/Loading/Edit Excel/Edit Excel/Program.cs +++ b/Loading and Saving/OneDrive/Loading/Edit Excel/Edit Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Loading and Saving/OneDrive/Saving/Create Excel/Create Excel/Program.cs b/Loading and Saving/OneDrive/Saving/Create Excel/Create Excel/Program.cs index 07274680..df3846b1 100644 --- a/Loading and Saving/OneDrive/Saving/Create Excel/Create Excel/Program.cs +++ b/Loading and Saving/OneDrive/Saving/Create Excel/Create Excel/Program.cs @@ -1,4 +1,4 @@ -var builder = WebApplication.CreateBuilder(args); +var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -25,3 +25,7 @@ pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run(); + + + + diff --git a/Pictures in Excel/Add Picture/.NET/Add Picture/Add Picture/Add Picture.csproj b/Pictures in Excel/Add Picture/.NET/Add Picture/Add Picture/Add Picture.csproj index ffb13dc4..a369df4c 100644 --- a/Pictures in Excel/Add Picture/.NET/Add Picture/Add Picture/Add Picture.csproj +++ b/Pictures in Excel/Add Picture/.NET/Add Picture/Add Picture/Add Picture.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pictures in Excel/Add Picture/.NET/Add Picture/Add Picture/Program.cs b/Pictures in Excel/Add Picture/.NET/Add Picture/Add Picture/Program.cs index 77db2218..b3d7552f 100644 --- a/Pictures in Excel/Add Picture/.NET/Add Picture/Add Picture/Program.cs +++ b/Pictures in Excel/Add Picture/.NET/Add Picture/Add Picture/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AddPicture.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AddPicture.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -32,3 +32,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pictures in Excel/Add SVG Picture/.NET/Add SVG Picture/Add SVG Picture/Add SVG Picture.csproj b/Pictures in Excel/Add SVG Picture/.NET/Add SVG Picture/Add SVG Picture/Add SVG Picture.csproj index 73fa2788..7983e324 100644 --- a/Pictures in Excel/Add SVG Picture/.NET/Add SVG Picture/Add SVG Picture/Add SVG Picture.csproj +++ b/Pictures in Excel/Add SVG Picture/.NET/Add SVG Picture/Add SVG Picture/Add SVG Picture.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pictures in Excel/Add SVG Picture/.NET/Add SVG Picture/Add SVG Picture/Program.cs b/Pictures in Excel/Add SVG Picture/.NET/Add SVG Picture/Add SVG Picture/Program.cs index beefd9fc..80cab786 100644 --- a/Pictures in Excel/Add SVG Picture/.NET/Add SVG Picture/Add SVG Picture/Program.cs +++ b/Pictures in Excel/Add SVG Picture/.NET/Add SVG Picture/Add SVG Picture/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SVGImage.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SVGImage.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pictures in Excel/External Image/.NET/External Image/External Image/External Image.csproj b/Pictures in Excel/External Image/.NET/External Image/External Image/External Image.csproj index 90c138aa..1fdcfbc5 100644 --- a/Pictures in Excel/External Image/.NET/External Image/External Image/External Image.csproj +++ b/Pictures in Excel/External Image/.NET/External Image/External Image/External Image.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Pictures in Excel/External Image/.NET/External Image/External Image/Output/.gitkeep b/Pictures in Excel/External Image/.NET/External Image/External Image/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Pictures in Excel/External Image/.NET/External Image/External Image/Program.cs b/Pictures in Excel/External Image/.NET/External Image/External Image/Program.cs index 738bce27..10c4df16 100644 --- a/Pictures in Excel/External Image/.NET/External Image/External Image/Program.cs +++ b/Pictures in Excel/External Image/.NET/External Image/External Image/Program.cs @@ -19,20 +19,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ExternalImage.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ExternalImage.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ExternalImage.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Pictures in Excel/ImageInMergedRegion/.NET/ImageInMergedRegion/ImageInMergedRegion/ImageInMergedRegion.csproj b/Pictures in Excel/ImageInMergedRegion/.NET/ImageInMergedRegion/ImageInMergedRegion/ImageInMergedRegion.csproj index ddbaf2ec..0f8e6126 100644 --- a/Pictures in Excel/ImageInMergedRegion/.NET/ImageInMergedRegion/ImageInMergedRegion/ImageInMergedRegion.csproj +++ b/Pictures in Excel/ImageInMergedRegion/.NET/ImageInMergedRegion/ImageInMergedRegion/ImageInMergedRegion.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/Pictures in Excel/ImageInMergedRegion/.NET/ImageInMergedRegion/ImageInMergedRegion/Program.cs b/Pictures in Excel/ImageInMergedRegion/.NET/ImageInMergedRegion/ImageInMergedRegion/Program.cs index 4343a956..6423e596 100644 --- a/Pictures in Excel/ImageInMergedRegion/.NET/ImageInMergedRegion/ImageInMergedRegion/Program.cs +++ b/Pictures in Excel/ImageInMergedRegion/.NET/ImageInMergedRegion/ImageInMergedRegion/Program.cs @@ -42,7 +42,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ImageInMergedRegion.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ImageInMergedRegion.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -55,3 +55,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pictures in Excel/Move and Size with cells/.NET/Move and Size with cells/Move and Size with cells/Move and Size with cells.csproj b/Pictures in Excel/Move and Size with cells/.NET/Move and Size with cells/Move and Size with cells/Move and Size with cells.csproj index a895e01c..4af094b5 100644 --- a/Pictures in Excel/Move and Size with cells/.NET/Move and Size with cells/Move and Size with cells/Move and Size with cells.csproj +++ b/Pictures in Excel/Move and Size with cells/.NET/Move and Size with cells/Move and Size with cells/Move and Size with cells.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Pictures in Excel/Move and Size with cells/.NET/Move and Size with cells/Move and Size with cells/Program.cs b/Pictures in Excel/Move and Size with cells/.NET/Move and Size with cells/Move and Size with cells/Program.cs index e1e2c044..eaffb070 100644 --- a/Pictures in Excel/Move and Size with cells/.NET/Move and Size with cells/Move and Size with cells/Program.cs +++ b/Pictures in Excel/Move and Size with cells/.NET/Move and Size with cells/Move and Size with cells/Program.cs @@ -39,3 +39,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Pictures in Excel/Position and Resize Picture/.NET/Position and Resize Picture/Position and Resize Picture/Position and Resize Picture.csproj b/Pictures in Excel/Position and Resize Picture/.NET/Position and Resize Picture/Position and Resize Picture/Position and Resize Picture.csproj index 1184c955..6c9f65d8 100644 --- a/Pictures in Excel/Position and Resize Picture/.NET/Position and Resize Picture/Position and Resize Picture/Position and Resize Picture.csproj +++ b/Pictures in Excel/Position and Resize Picture/.NET/Position and Resize Picture/Position and Resize Picture/Position and Resize Picture.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pictures in Excel/Position and Resize Picture/.NET/Position and Resize Picture/Position and Resize Picture/Program.cs b/Pictures in Excel/Position and Resize Picture/.NET/Position and Resize Picture/Position and Resize Picture/Program.cs index 9ac2725e..db35f6e9 100644 --- a/Pictures in Excel/Position and Resize Picture/.NET/Position and Resize Picture/Position and Resize Picture/Program.cs +++ b/Pictures in Excel/Position and Resize Picture/.NET/Position and Resize Picture/Position and Resize Picture/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ResizePicture.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ResizePicture.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -40,3 +40,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pictures in Excel/Rotation and Transparency/.NET/Rotation and Transparency/Rotation and Transparency/Program.cs b/Pictures in Excel/Rotation and Transparency/.NET/Rotation and Transparency/Rotation and Transparency/Program.cs index 2be4d4db..24cd07c2 100644 --- a/Pictures in Excel/Rotation and Transparency/.NET/Rotation and Transparency/Rotation and Transparency/Program.cs +++ b/Pictures in Excel/Rotation and Transparency/.NET/Rotation and Transparency/Rotation and Transparency/Program.cs @@ -31,7 +31,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -43,3 +43,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pictures in Excel/Rotation and Transparency/.NET/Rotation and Transparency/Rotation and Transparency/Rotation and Transparency.csproj b/Pictures in Excel/Rotation and Transparency/.NET/Rotation and Transparency/Rotation and Transparency/Rotation and Transparency.csproj index e36e8131..1f958421 100644 --- a/Pictures in Excel/Rotation and Transparency/.NET/Rotation and Transparency/Rotation and Transparency/Rotation and Transparency.csproj +++ b/Pictures in Excel/Rotation and Transparency/.NET/Rotation and Transparency/Rotation and Transparency/Rotation and Transparency.csproj @@ -15,7 +15,12 @@ Always + + Always + + + diff --git a/Pivot Charts/Create Pivot Chart/.NET/Create Pivot Chart/Create Pivot Chart/Create Pivot Chart.csproj b/Pivot Charts/Create Pivot Chart/.NET/Create Pivot Chart/Create Pivot Chart/Create Pivot Chart.csproj index 2f91f025..2d57dbb3 100644 --- a/Pivot Charts/Create Pivot Chart/.NET/Create Pivot Chart/Create Pivot Chart/Create Pivot Chart.csproj +++ b/Pivot Charts/Create Pivot Chart/.NET/Create Pivot Chart/Create Pivot Chart/Create Pivot Chart.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Charts/Create Pivot Chart/.NET/Create Pivot Chart/Create Pivot Chart/Program.cs b/Pivot Charts/Create Pivot Chart/.NET/Create Pivot Chart/Create Pivot Chart/Program.cs index 601ff8ff..d53bc0d6 100644 --- a/Pivot Charts/Create Pivot Chart/.NET/Create Pivot Chart/Create Pivot Chart/Program.cs +++ b/Pivot Charts/Create Pivot Chart/.NET/Create Pivot Chart/Create Pivot Chart/Program.cs @@ -34,7 +34,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PivotChart.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PivotChart.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -46,3 +46,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Calculated Field/.NET/Calculated Field/Calculated Field/Calculated Field.csproj b/Pivot Table/Calculated Field/.NET/Calculated Field/Calculated Field/Calculated Field.csproj index a59a6cf8..1a477d6b 100644 --- a/Pivot Table/Calculated Field/.NET/Calculated Field/Calculated Field/Calculated Field.csproj +++ b/Pivot Table/Calculated Field/.NET/Calculated Field/Calculated Field/Calculated Field.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Calculated Field/.NET/Calculated Field/Calculated Field/Program.cs b/Pivot Table/Calculated Field/.NET/Calculated Field/Calculated Field/Program.cs index 72c4bd5b..b7be091d 100644 --- a/Pivot Table/Calculated Field/.NET/Calculated Field/Calculated Field/Program.cs +++ b/Pivot Table/Calculated Field/.NET/Calculated Field/Calculated Field/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CalculatedField.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CalculatedField.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -36,3 +36,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Classic Layout/.NET/Classic Layout/Classic Layout/Classic Layout.csproj b/Pivot Table/Classic Layout/.NET/Classic Layout/Classic Layout/Classic Layout.csproj index 360dcca2..b831f20f 100644 --- a/Pivot Table/Classic Layout/.NET/Classic Layout/Classic Layout/Classic Layout.csproj +++ b/Pivot Table/Classic Layout/.NET/Classic Layout/Classic Layout/Classic Layout.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Classic Layout/.NET/Classic Layout/Classic Layout/Program.cs b/Pivot Table/Classic Layout/.NET/Classic Layout/Classic Layout/Program.cs index f03bc646..cfd67030 100644 --- a/Pivot Table/Classic Layout/.NET/Classic Layout/Classic Layout/Program.cs +++ b/Pivot Table/Classic Layout/.NET/Classic Layout/Classic Layout/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ClassicLayout.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ClassicLayout.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Compact Layout/.NET/Compact Layout/Compact Layout/Compact Layout.csproj b/Pivot Table/Compact Layout/.NET/Compact Layout/Compact Layout/Compact Layout.csproj index 6cfaca5d..55870850 100644 --- a/Pivot Table/Compact Layout/.NET/Compact Layout/Compact Layout/Compact Layout.csproj +++ b/Pivot Table/Compact Layout/.NET/Compact Layout/Compact Layout/Compact Layout.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Pivot Table/Compact Layout/.NET/Compact Layout/Compact Layout/Program.cs b/Pivot Table/Compact Layout/.NET/Compact Layout/Compact Layout/Program.cs index 9163c1da..21ac3a09 100644 --- a/Pivot Table/Compact Layout/.NET/Compact Layout/Compact Layout/Program.cs +++ b/Pivot Table/Compact Layout/.NET/Compact Layout/Compact Layout/Program.cs @@ -24,7 +24,7 @@ public static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table/Create Pivot Table.csproj b/Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table/Create Pivot Table.csproj index bd6fdb7f..f0194ca8 100644 --- a/Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table/Create Pivot Table.csproj +++ b/Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table/Create Pivot Table.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table/Program.cs b/Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table/Program.cs index 370d3a68..13f5b8f0 100644 --- a/Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table/Program.cs +++ b/Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table/Program.cs @@ -33,7 +33,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PivotTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PivotTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -45,3 +45,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Dynamic Refresh/.NET/Dynamic Refresh/Dynamic Refresh/Dynamic Refresh.csproj b/Pivot Table/Dynamic Refresh/.NET/Dynamic Refresh/Dynamic Refresh/Dynamic Refresh.csproj index 477b9233..d6208cc4 100644 --- a/Pivot Table/Dynamic Refresh/.NET/Dynamic Refresh/Dynamic Refresh/Dynamic Refresh.csproj +++ b/Pivot Table/Dynamic Refresh/.NET/Dynamic Refresh/Dynamic Refresh/Dynamic Refresh.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Dynamic Refresh/.NET/Dynamic Refresh/Dynamic Refresh/Program.cs b/Pivot Table/Dynamic Refresh/.NET/Dynamic Refresh/Dynamic Refresh/Program.cs index 837a3b8e..12af0be2 100644 --- a/Pivot Table/Dynamic Refresh/.NET/Dynamic Refresh/Dynamic Refresh/Program.cs +++ b/Pivot Table/Dynamic Refresh/.NET/Dynamic Refresh/Dynamic Refresh/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PivotTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PivotTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -32,3 +32,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Edit Pivot Table/.NET/Edit Pivot Table/Edit Pivot Table/Edit Pivot Table.csproj b/Pivot Table/Edit Pivot Table/.NET/Edit Pivot Table/Edit Pivot Table/Edit Pivot Table.csproj index ac1f2449..410dc961 100644 --- a/Pivot Table/Edit Pivot Table/.NET/Edit Pivot Table/Edit Pivot Table/Edit Pivot Table.csproj +++ b/Pivot Table/Edit Pivot Table/.NET/Edit Pivot Table/Edit Pivot Table/Edit Pivot Table.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Pivot Table/Edit Pivot Table/.NET/Edit Pivot Table/Edit Pivot Table/Program.cs b/Pivot Table/Edit Pivot Table/.NET/Edit Pivot Table/Edit Pivot Table/Program.cs index c53f89af..580990b1 100644 --- a/Pivot Table/Edit Pivot Table/.NET/Edit Pivot Table/Edit Pivot Table/Program.cs +++ b/Pivot Table/Edit Pivot Table/.NET/Edit Pivot Table/Edit Pivot Table/Program.cs @@ -27,7 +27,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -39,3 +39,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Expand or Collapse Pivot Rows/.NET/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows.csproj b/Pivot Table/Expand or Collapse Pivot Rows/.NET/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows.csproj index ec19effc..21487106 100644 --- a/Pivot Table/Expand or Collapse Pivot Rows/.NET/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows.csproj +++ b/Pivot Table/Expand or Collapse Pivot Rows/.NET/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Expand or Collapse Pivot Rows/.NET/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows/Program.cs b/Pivot Table/Expand or Collapse Pivot Rows/.NET/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows/Program.cs index f90bdf7f..c959dd82 100644 --- a/Pivot Table/Expand or Collapse Pivot Rows/.NET/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows/Program.cs +++ b/Pivot Table/Expand or Collapse Pivot Rows/.NET/Expand or Collapse Pivot Rows/Expand or Collapse Pivot Rows/Program.cs @@ -41,7 +41,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ExpandOrCollapse.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ExpandOrCollapse.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -53,3 +53,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Format Pivot Cell/.NET/Format Pivot Cell/Format Pivot Cell/Format Pivot Cell.csproj b/Pivot Table/Format Pivot Cell/.NET/Format Pivot Cell/Format Pivot Cell/Format Pivot Cell.csproj index b9166e93..60975036 100644 --- a/Pivot Table/Format Pivot Cell/.NET/Format Pivot Cell/Format Pivot Cell/Format Pivot Cell.csproj +++ b/Pivot Table/Format Pivot Cell/.NET/Format Pivot Cell/Format Pivot Cell/Format Pivot Cell.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Format Pivot Cell/.NET/Format Pivot Cell/Format Pivot Cell/Program.cs b/Pivot Table/Format Pivot Cell/.NET/Format Pivot Cell/Format Pivot Cell/Program.cs index d17fb770..0152e34b 100644 --- a/Pivot Table/Format Pivot Cell/.NET/Format Pivot Cell/Format Pivot Cell/Program.cs +++ b/Pivot Table/Format Pivot Cell/.NET/Format Pivot Cell/Format Pivot Cell/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PivotCellFormat.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PivotCellFormat.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Format Pivot Table/.NET/Format Pivot Table/Format Pivot Table/Format Pivot Table.csproj b/Pivot Table/Format Pivot Table/.NET/Format Pivot Table/Format Pivot Table/Format Pivot Table.csproj index bb459422..fdd99882 100644 --- a/Pivot Table/Format Pivot Table/.NET/Format Pivot Table/Format Pivot Table/Format Pivot Table.csproj +++ b/Pivot Table/Format Pivot Table/.NET/Format Pivot Table/Format Pivot Table/Format Pivot Table.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Format Pivot Table/.NET/Format Pivot Table/Format Pivot Table/Program.cs b/Pivot Table/Format Pivot Table/.NET/Format Pivot Table/Format Pivot Table/Program.cs index 1251ed35..5752d9b5 100644 --- a/Pivot Table/Format Pivot Table/.NET/Format Pivot Table/Format Pivot Table/Program.cs +++ b/Pivot Table/Format Pivot Table/.NET/Format Pivot Table/Format Pivot Table/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PivotTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PivotTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Layout/Layout/Layout.csproj b/Pivot Table/Layout/Layout/Layout.csproj index 90c103e9..169318ce 100644 --- a/Pivot Table/Layout/Layout/Layout.csproj +++ b/Pivot Table/Layout/Layout/Layout.csproj @@ -15,7 +15,11 @@ Always + + Always + + diff --git a/Pivot Table/Layout/Layout/Program.cs b/Pivot Table/Layout/Layout/Program.cs index 785903f3..fb2d188b 100644 --- a/Pivot Table/Layout/Layout/Program.cs +++ b/Pivot Table/Layout/Layout/Program.cs @@ -26,3 +26,7 @@ public static void Main(String[] args) } } } + + + + diff --git a/Pivot Table/Outline Layout/.NET/Outline Layout/Outline Layout/Outline Layout.csproj b/Pivot Table/Outline Layout/.NET/Outline Layout/Outline Layout/Outline Layout.csproj index 7914cb9e..931d472d 100644 --- a/Pivot Table/Outline Layout/.NET/Outline Layout/Outline Layout/Outline Layout.csproj +++ b/Pivot Table/Outline Layout/.NET/Outline Layout/Outline Layout/Outline Layout.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Pivot Table/Outline Layout/.NET/Outline Layout/Outline Layout/Program.cs b/Pivot Table/Outline Layout/.NET/Outline Layout/Outline Layout/Program.cs index 83b97632..b4f8793b 100644 --- a/Pivot Table/Outline Layout/.NET/Outline Layout/Outline Layout/Program.cs +++ b/Pivot Table/Outline Layout/.NET/Outline Layout/Outline Layout/Program.cs @@ -24,7 +24,7 @@ public static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Pivot Table/Pivot Filter/.NET/Pivot Filter/Pivot Filter/Pivot Filter.csproj b/Pivot Table/Pivot Filter/.NET/Pivot Filter/Pivot Filter/Pivot Filter.csproj index f2fa84bc..840e5ff0 100644 --- a/Pivot Table/Pivot Filter/.NET/Pivot Filter/Pivot Filter/Pivot Filter.csproj +++ b/Pivot Table/Pivot Filter/.NET/Pivot Filter/Pivot Filter/Pivot Filter.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Pivot Filter/.NET/Pivot Filter/Pivot Filter/Program.cs b/Pivot Table/Pivot Filter/.NET/Pivot Filter/Pivot Filter/Program.cs index 5dcb296d..bf6a0381 100644 --- a/Pivot Table/Pivot Filter/.NET/Pivot Filter/Pivot Filter/Program.cs +++ b/Pivot Table/Pivot Filter/.NET/Pivot Filter/Pivot Filter/Program.cs @@ -53,7 +53,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PivotFilter.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PivotFilter.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -65,3 +65,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/PivotTable/PivotTable/PivotTable.csproj b/Pivot Table/PivotTable/PivotTable/PivotTable.csproj index 90c103e9..169318ce 100644 --- a/Pivot Table/PivotTable/PivotTable/PivotTable.csproj +++ b/Pivot Table/PivotTable/PivotTable/PivotTable.csproj @@ -15,7 +15,11 @@ Always + + Always + + diff --git a/Pivot Table/PivotTable/PivotTable/Program.cs b/Pivot Table/PivotTable/PivotTable/Program.cs index 88f7d6fd..c727b0cc 100644 --- a/Pivot Table/PivotTable/PivotTable/Program.cs +++ b/Pivot Table/PivotTable/PivotTable/Program.cs @@ -51,3 +51,7 @@ public static void Main() } } + + + + diff --git a/Pivot Table/Refresh Pivot Table/.NET/Refresh Pivot Table/Refresh Pivot Table/Program.cs b/Pivot Table/Refresh Pivot Table/.NET/Refresh Pivot Table/Refresh Pivot Table/Program.cs index ba7c17a4..297aed83 100644 --- a/Pivot Table/Refresh Pivot Table/.NET/Refresh Pivot Table/Refresh Pivot Table/Program.cs +++ b/Pivot Table/Refresh Pivot Table/.NET/Refresh Pivot Table/Refresh Pivot Table/Program.cs @@ -28,7 +28,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RefreshPivotTable.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RefreshPivotTable.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -40,3 +40,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Refresh Pivot Table/.NET/Refresh Pivot Table/Refresh Pivot Table/Refresh Pivot Table.csproj b/Pivot Table/Refresh Pivot Table/.NET/Refresh Pivot Table/Refresh Pivot Table/Refresh Pivot Table.csproj index 88a535a0..b3e75892 100644 --- a/Pivot Table/Refresh Pivot Table/.NET/Refresh Pivot Table/Refresh Pivot Table/Refresh Pivot Table.csproj +++ b/Pivot Table/Refresh Pivot Table/.NET/Refresh Pivot Table/Refresh Pivot Table/Refresh Pivot Table.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Remove Pivot Table/.NET/Remove Pivot Table/Remove Pivot Table/Program.cs b/Pivot Table/Remove Pivot Table/.NET/Remove Pivot Table/Remove Pivot Table/Program.cs index 9a2719f3..d21877ea 100644 --- a/Pivot Table/Remove Pivot Table/.NET/Remove Pivot Table/Remove Pivot Table/Program.cs +++ b/Pivot Table/Remove Pivot Table/.NET/Remove Pivot Table/Remove Pivot Table/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Remove Pivot Table/.NET/Remove Pivot Table/Remove Pivot Table/Remove Pivot Table.csproj b/Pivot Table/Remove Pivot Table/.NET/Remove Pivot Table/Remove Pivot Table/Remove Pivot Table.csproj index b901d9e0..9cb18086 100644 --- a/Pivot Table/Remove Pivot Table/.NET/Remove Pivot Table/Remove Pivot Table/Remove Pivot Table.csproj +++ b/Pivot Table/Remove Pivot Table/.NET/Remove Pivot Table/Remove Pivot Table/Remove Pivot Table.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Pivot Table/Sort Left to Right/.NET/Sort Left to Right/Sort Left to Right/Program.cs b/Pivot Table/Sort Left to Right/.NET/Sort Left to Right/Sort Left to Right/Program.cs index def5c5cc..66cab1d9 100644 --- a/Pivot Table/Sort Left to Right/.NET/Sort Left to Right/Sort Left to Right/Program.cs +++ b/Pivot Table/Sort Left to Right/.NET/Sort Left to Right/Sort Left to Right/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PivotSort.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PivotSort.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Sort Left to Right/.NET/Sort Left to Right/Sort Left to Right/Sort Left to Right.csproj b/Pivot Table/Sort Left to Right/.NET/Sort Left to Right/Sort Left to Right/Sort Left to Right.csproj index 4198914f..b5854e45 100644 --- a/Pivot Table/Sort Left to Right/.NET/Sort Left to Right/Sort Left to Right/Sort Left to Right.csproj +++ b/Pivot Table/Sort Left to Right/.NET/Sort Left to Right/Sort Left to Right/Sort Left to Right.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Sort Top to Bottom/.NET/Sort Top to Bottom/Sort Top to Bottom/Program.cs b/Pivot Table/Sort Top to Bottom/.NET/Sort Top to Bottom/Sort Top to Bottom/Program.cs index c862f825..abdec922 100644 --- a/Pivot Table/Sort Top to Bottom/.NET/Sort Top to Bottom/Sort Top to Bottom/Program.cs +++ b/Pivot Table/Sort Top to Bottom/.NET/Sort Top to Bottom/Sort Top to Bottom/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PivotSort.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PivotSort.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/Pivot Table/Sort Top to Bottom/.NET/Sort Top to Bottom/Sort Top to Bottom/Sort Top to Bottom.csproj b/Pivot Table/Sort Top to Bottom/.NET/Sort Top to Bottom/Sort Top to Bottom/Sort Top to Bottom.csproj index 5e619f07..283f0ab4 100644 --- a/Pivot Table/Sort Top to Bottom/.NET/Sort Top to Bottom/Sort Top to Bottom/Sort Top to Bottom.csproj +++ b/Pivot Table/Sort Top to Bottom/.NET/Sort Top to Bottom/Sort Top to Bottom/Sort Top to Bottom.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Pivot Table/Tabular Layout/.NET/Tabular Layout/Tabular Layout/Program.cs b/Pivot Table/Tabular Layout/.NET/Tabular Layout/Tabular Layout/Program.cs index 78b3c6a3..fd19fa82 100644 --- a/Pivot Table/Tabular Layout/.NET/Tabular Layout/Tabular Layout/Program.cs +++ b/Pivot Table/Tabular Layout/.NET/Tabular Layout/Tabular Layout/Program.cs @@ -24,7 +24,7 @@ public static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Pivot Table/Tabular Layout/.NET/Tabular Layout/Tabular Layout/Tabular Layout.csproj b/Pivot Table/Tabular Layout/.NET/Tabular Layout/Tabular Layout/Tabular Layout.csproj index 25c81f5e..07ced682 100644 --- a/Pivot Table/Tabular Layout/.NET/Tabular Layout/Tabular Layout/Tabular Layout.csproj +++ b/Pivot Table/Tabular Layout/.NET/Tabular Layout/Tabular Layout/Tabular Layout.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Output/.gitkeep b/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Program.cs b/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Program.cs index cdca361f..354eb2d0 100644 --- a/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Program.cs +++ b/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Program.cs @@ -26,7 +26,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ReadandEditExcel.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ReadandEditExcel.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -41,13 +41,10 @@ static void Main(string[] args) //Dispose the instance of ExcelEngine excelEngine.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ReadandEditExcel.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } + + + + diff --git a/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Read and Edit Excel.csproj b/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Read and Edit Excel.csproj index 1492e561..17c9480c 100644 --- a/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Read and Edit Excel.csproj +++ b/Read and Edit Excel/Read and Edit Excel/.NET/Read and Edit Excel/Read and Edit Excel/Read and Edit Excel.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Real Time Examples in Excel/ConvertXlsToXlsx/ConvertXlsToXlsx/ConvertXlsToXlsx.csproj b/Real Time Examples in Excel/ConvertXlsToXlsx/ConvertXlsToXlsx/ConvertXlsToXlsx.csproj index 90c103e9..c887a3e4 100644 --- a/Real Time Examples in Excel/ConvertXlsToXlsx/ConvertXlsToXlsx/ConvertXlsToXlsx.csproj +++ b/Real Time Examples in Excel/ConvertXlsToXlsx/ConvertXlsToXlsx/ConvertXlsToXlsx.csproj @@ -15,7 +15,16 @@ Always + + Always + + + + + + + diff --git a/Real Time Examples in Excel/ConvertXlsToXlsx/ConvertXlsToXlsx/Program.cs b/Real Time Examples in Excel/ConvertXlsToXlsx/ConvertXlsToXlsx/Program.cs index 8b70b0f9..a7c82228 100644 --- a/Real Time Examples in Excel/ConvertXlsToXlsx/ConvertXlsToXlsx/Program.cs +++ b/Real Time Examples in Excel/ConvertXlsToXlsx/ConvertXlsToXlsx/Program.cs @@ -41,3 +41,7 @@ private static void ConvertXlsToXLSX(string filePath) } + + + + diff --git a/Real Time Examples in Excel/Excel To Thumbnail Image/Excel To Thumbnail Image/Excel To Thumbnail Image.csproj b/Real Time Examples in Excel/Excel To Thumbnail Image/Excel To Thumbnail Image/Excel To Thumbnail Image.csproj index e11917db..aaaef4e1 100644 --- a/Real Time Examples in Excel/Excel To Thumbnail Image/Excel To Thumbnail Image/Excel To Thumbnail Image.csproj +++ b/Real Time Examples in Excel/Excel To Thumbnail Image/Excel To Thumbnail Image/Excel To Thumbnail Image.csproj @@ -15,7 +15,11 @@ Always + + Always + + diff --git a/Real Time Examples in Excel/Excel To Thumbnail Image/Excel To Thumbnail Image/Program.cs b/Real Time Examples in Excel/Excel To Thumbnail Image/Excel To Thumbnail Image/Program.cs index 4d6be2da..be9abb5e 100644 --- a/Real Time Examples in Excel/Excel To Thumbnail Image/Excel To Thumbnail Image/Program.cs +++ b/Real Time Examples in Excel/Excel To Thumbnail Image/Excel To Thumbnail Image/Program.cs @@ -36,3 +36,7 @@ static void Main(string[] args) } } + + + + diff --git a/Real Time Examples in Excel/ExcelToPDF/ExcelToPDF/ExcelToPDF.csproj b/Real Time Examples in Excel/ExcelToPDF/ExcelToPDF/ExcelToPDF.csproj index 1f9d3492..15097dd6 100644 --- a/Real Time Examples in Excel/ExcelToPDF/ExcelToPDF/ExcelToPDF.csproj +++ b/Real Time Examples in Excel/ExcelToPDF/ExcelToPDF/ExcelToPDF.csproj @@ -19,7 +19,19 @@ Always + + Always + + + + + + + + + + diff --git a/Real Time Examples in Excel/ExcelToPDF/ExcelToPDF/Program.cs b/Real Time Examples in Excel/ExcelToPDF/ExcelToPDF/Program.cs index 7317a259..cea67b2f 100644 --- a/Real Time Examples in Excel/ExcelToPDF/ExcelToPDF/Program.cs +++ b/Real Time Examples in Excel/ExcelToPDF/ExcelToPDF/Program.cs @@ -59,3 +59,7 @@ static Stream ConvertExcelToPDF(Stream inputExcelData) } } } + + + + diff --git a/Real Time Examples in Excel/IncomeTaxEmailDistribution/IncomeTaxEmailDistribution/Program.cs b/Real Time Examples in Excel/IncomeTaxEmailDistribution/IncomeTaxEmailDistribution/Program.cs index 7a9ca60c..ef1c5122 100644 --- a/Real Time Examples in Excel/IncomeTaxEmailDistribution/IncomeTaxEmailDistribution/Program.cs +++ b/Real Time Examples in Excel/IncomeTaxEmailDistribution/IncomeTaxEmailDistribution/Program.cs @@ -20,3 +20,7 @@ static void Main() } } } + + + + diff --git a/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/LoanEMISchedule.csproj b/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/LoanEMISchedule.csproj index 8aa05f08..5a00840a 100644 --- a/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/LoanEMISchedule.csproj +++ b/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/LoanEMISchedule.csproj @@ -1,4 +1,4 @@ - + Exe @@ -13,4 +13,11 @@ + + + Always + + + + diff --git a/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/Output/.gitkeep b/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/Program.cs b/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/Program.cs index 06d408ca..4ebb197f 100644 --- a/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/Program.cs +++ b/Real Time Examples in Excel/Loan EMI Schedule/LoanEMISchedule/Program.cs @@ -239,3 +239,7 @@ private static void CalculateEMI(IWorksheet sheet, string bankName, long account } } } + + + + diff --git a/Real Time Examples in Excel/Merge Excel Documents/.NET Core/MergeExcel/MergeExcel.csproj b/Real Time Examples in Excel/Merge Excel Documents/.NET Core/MergeExcel/MergeExcel.csproj index 21f249a4..b7de65a3 100644 --- a/Real Time Examples in Excel/Merge Excel Documents/.NET Core/MergeExcel/MergeExcel.csproj +++ b/Real Time Examples in Excel/Merge Excel Documents/.NET Core/MergeExcel/MergeExcel.csproj @@ -20,7 +20,16 @@ Always + + Always + + + + + + + diff --git a/Real Time Examples in Excel/Merge Excel Documents/.NET Core/MergeExcel/Program.cs b/Real Time Examples in Excel/Merge Excel Documents/.NET Core/MergeExcel/Program.cs index 72960594..bba2113d 100644 --- a/Real Time Examples in Excel/Merge Excel Documents/.NET Core/MergeExcel/Program.cs +++ b/Real Time Examples in Excel/Merge Excel Documents/.NET Core/MergeExcel/Program.cs @@ -64,3 +64,7 @@ public static Stream MergeExcelDocuments(List streams) + + + + diff --git a/Real Time Examples in Excel/SplitExcelDocument/SplitExcelDocument/Program.cs b/Real Time Examples in Excel/SplitExcelDocument/SplitExcelDocument/Program.cs index 4ea5349b..d8c58d7a 100644 --- a/Real Time Examples in Excel/SplitExcelDocument/SplitExcelDocument/Program.cs +++ b/Real Time Examples in Excel/SplitExcelDocument/SplitExcelDocument/Program.cs @@ -48,3 +48,7 @@ private static void SplitExcelDocument(string filePath) } + + + + diff --git a/Real Time Examples in Excel/SplitExcelDocument/SplitExcelDocument/SplitExcelDocument.csproj b/Real Time Examples in Excel/SplitExcelDocument/SplitExcelDocument/SplitExcelDocument.csproj index 9ba9d9d9..673cebc1 100644 --- a/Real Time Examples in Excel/SplitExcelDocument/SplitExcelDocument/SplitExcelDocument.csproj +++ b/Real Time Examples in Excel/SplitExcelDocument/SplitExcelDocument/SplitExcelDocument.csproj @@ -19,7 +19,16 @@ Always + + Always + + + + + + + diff --git a/Slicer/Create Slicer/.NET/Create Slicer/Create Slicer/Create Slicer.csproj b/Slicer/Create Slicer/.NET/Create Slicer/Create Slicer/Create Slicer.csproj index dbbe7c97..fc4b87bf 100644 --- a/Slicer/Create Slicer/.NET/Create Slicer/Create Slicer/Create Slicer.csproj +++ b/Slicer/Create Slicer/.NET/Create Slicer/Create Slicer/Create Slicer.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Slicer/Create Slicer/.NET/Create Slicer/Create Slicer/Program.cs b/Slicer/Create Slicer/.NET/Create Slicer/Create Slicer/Program.cs index 0c9cbda0..048e7943 100644 --- a/Slicer/Create Slicer/.NET/Create Slicer/Create Slicer/Program.cs +++ b/Slicer/Create Slicer/.NET/Create Slicer/Create Slicer/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CreateSlicer.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CreateSlicer.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/Slicer/Edit Slicer/.NET/Edit Slicer/Edit Slicer/Edit Slicer.csproj b/Slicer/Edit Slicer/.NET/Edit Slicer/Edit Slicer/Edit Slicer.csproj index a93b43a9..d4332d35 100644 --- a/Slicer/Edit Slicer/.NET/Edit Slicer/Edit Slicer/Edit Slicer.csproj +++ b/Slicer/Edit Slicer/.NET/Edit Slicer/Edit Slicer/Edit Slicer.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/Slicer/Edit Slicer/.NET/Edit Slicer/Edit Slicer/Program.cs b/Slicer/Edit Slicer/.NET/Edit Slicer/Edit Slicer/Program.cs index 08579c1b..f4b1c33a 100644 --- a/Slicer/Edit Slicer/.NET/Edit Slicer/Edit Slicer/Program.cs +++ b/Slicer/Edit Slicer/.NET/Edit Slicer/Edit Slicer/Program.cs @@ -53,7 +53,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("EditSlicer.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/EditSlicer.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -65,3 +65,7 @@ static void Main(string[] args) } } + + + + diff --git a/TSV to Excel/TSV to Excel/.NET/TSV to Excel/TSV to Excel/Program.cs b/TSV to Excel/TSV to Excel/.NET/TSV to Excel/TSV to Excel/Program.cs index e4a9372e..f0cc19a2 100644 --- a/TSV to Excel/TSV to Excel/.NET/TSV to Excel/TSV to Excel/Program.cs +++ b/TSV to Excel/TSV to Excel/.NET/TSV to Excel/TSV to Excel/Program.cs @@ -16,7 +16,7 @@ public static void Main(string[] args) IWorkbook workbook = application.Workbooks.Open(inputStream, "\t"); //Save the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); //Dispose streams @@ -26,3 +26,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/TSV to Excel/TSV to Excel/.NET/TSV to Excel/TSV to Excel/TSV to Excel.csproj b/TSV to Excel/TSV to Excel/.NET/TSV to Excel/TSV to Excel/TSV to Excel.csproj index 7e998295..23bab414 100644 --- a/TSV to Excel/TSV to Excel/.NET/TSV to Excel/TSV to Excel/TSV to Excel.csproj +++ b/TSV to Excel/TSV to Excel/.NET/TSV to Excel/TSV to Excel/TSV to Excel.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Threaded Comments/Add Comment/.NET/Add Comment/Add Comment/Add Comment.csproj b/Threaded Comments/Add Comment/.NET/Add Comment/Add Comment/Add Comment.csproj index 04184589..a7036f00 100644 --- a/Threaded Comments/Add Comment/.NET/Add Comment/Add Comment/Add Comment.csproj +++ b/Threaded Comments/Add Comment/.NET/Add Comment/Add Comment/Add Comment.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Threaded Comments/Add Comment/.NET/Add Comment/Add Comment/Program.cs b/Threaded Comments/Add Comment/.NET/Add Comment/Add Comment/Program.cs index 0285879b..f01ae29d 100644 --- a/Threaded Comments/Add Comment/.NET/Add Comment/Add Comment/Program.cs +++ b/Threaded Comments/Add Comment/.NET/Add Comment/Add Comment/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("AddComment.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/AddComment.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -33,3 +33,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Threaded Comments/Reply Comment/.NET/Reply Comment/Reply Comment/Program.cs b/Threaded Comments/Reply Comment/.NET/Reply Comment/Reply Comment/Program.cs index 9590f2bc..66169a8d 100644 --- a/Threaded Comments/Reply Comment/.NET/Reply Comment/Reply Comment/Program.cs +++ b/Threaded Comments/Reply Comment/.NET/Reply Comment/Reply Comment/Program.cs @@ -26,7 +26,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ReplyComment.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ReplyComment.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -36,3 +36,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Threaded Comments/Reply Comment/.NET/Reply Comment/Reply Comment/Reply Comment.csproj b/Threaded Comments/Reply Comment/.NET/Reply Comment/Reply Comment/Reply Comment.csproj index 75295546..583be0ff 100644 --- a/Threaded Comments/Reply Comment/.NET/Reply Comment/Reply Comment/Reply Comment.csproj +++ b/Threaded Comments/Reply Comment/.NET/Reply Comment/Reply Comment/Reply Comment.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Threaded Comments/Resolve Comment/.NET/Resolve Comment/Resolve Comment/Program.cs b/Threaded Comments/Resolve Comment/.NET/Resolve Comment/Resolve Comment/Program.cs index fb4c6eb8..ece5bf20 100644 --- a/Threaded Comments/Resolve Comment/.NET/Resolve Comment/Resolve Comment/Program.cs +++ b/Threaded Comments/Resolve Comment/.NET/Resolve Comment/Resolve Comment/Program.cs @@ -26,7 +26,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ResolveComment.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ResolveComment.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -36,3 +36,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Threaded Comments/Resolve Comment/.NET/Resolve Comment/Resolve Comment/Resolve Comment.csproj b/Threaded Comments/Resolve Comment/.NET/Resolve Comment/Resolve Comment/Resolve Comment.csproj index a76cd238..77411730 100644 --- a/Threaded Comments/Resolve Comment/.NET/Resolve Comment/Resolve Comment/Resolve Comment.csproj +++ b/Threaded Comments/Resolve Comment/.NET/Resolve Comment/Resolve Comment/Resolve Comment.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Use Cases/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG.csproj b/Use Cases/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG.csproj index c9278e92..cab78916 100644 --- a/Use Cases/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG.csproj +++ b/Use Cases/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG.csproj @@ -18,7 +18,11 @@ Always + + Always + + diff --git a/Use Cases/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG/Program.cs b/Use Cases/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG/Program.cs index 7e94c0e9..eaeca59d 100644 --- a/Use Cases/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG/Program.cs +++ b/Use Cases/Adding-Fallback-Image-for-SVG/Adding-Fallback-Image-for-SVG/Program.cs @@ -59,3 +59,7 @@ public static Stream ConvertSvgStreamToPngStream(Stream svgStream) } } } + + + + diff --git a/Use Cases/Convert-CSV-with-JSON-to-Excel/.NET/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel.csproj b/Use Cases/Convert-CSV-with-JSON-to-Excel/.NET/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel.csproj index 8272cbd9..211d7291 100644 --- a/Use Cases/Convert-CSV-with-JSON-to-Excel/.NET/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel.csproj +++ b/Use Cases/Convert-CSV-with-JSON-to-Excel/.NET/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Use Cases/Convert-CSV-with-JSON-to-Excel/.NET/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel/Program.cs b/Use Cases/Convert-CSV-with-JSON-to-Excel/.NET/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel/Program.cs index 7b9e6cef..d53de826 100644 --- a/Use Cases/Convert-CSV-with-JSON-to-Excel/.NET/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel/Program.cs +++ b/Use Cases/Convert-CSV-with-JSON-to-Excel/.NET/Convert-CSV-with-JSON-to-Excel/Convert-CSV-with-JSON-to-Excel/Program.cs @@ -91,9 +91,13 @@ public static void Main(string[] args) worksheet.UsedRange.WrapText = false; worksheet.UsedRange.AutofitColumns(); - FileStream outputStream = new FileStream("output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); } } } } + + + + diff --git a/Use Cases/Email Validation/.NET/Email Validation/Email Validation/Email Validation.csproj b/Use Cases/Email Validation/.NET/Email Validation/Email Validation/Email Validation.csproj index f7b14822..71cd06d9 100644 --- a/Use Cases/Email Validation/.NET/Email Validation/Email Validation/Email Validation.csproj +++ b/Use Cases/Email Validation/.NET/Email Validation/Email Validation/Email Validation.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Use Cases/Email Validation/.NET/Email Validation/Email Validation/Program.cs b/Use Cases/Email Validation/.NET/Email Validation/Email Validation/Program.cs index 6cf4e97a..c4684841 100644 --- a/Use Cases/Email Validation/.NET/Email Validation/Email Validation/Program.cs +++ b/Use Cases/Email Validation/.NET/Email Validation/Email Validation/Program.cs @@ -37,3 +37,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Use Cases/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array.csproj b/Use Cases/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array.csproj index 6cd83814..07c49a55 100644 --- a/Use Cases/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array.csproj +++ b/Use Cases/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array.csproj @@ -16,7 +16,11 @@ Always + + Always + + diff --git a/Use Cases/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array/Program.cs b/Use Cases/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array/Program.cs index ac9e2f2b..60f7a851 100644 --- a/Use Cases/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array/Program.cs +++ b/Use Cases/Export-delimited-string-to-string-array/Export-delimited-string-to-string-array/Program.cs @@ -46,3 +46,7 @@ public Report() } } + + + + diff --git a/Use Cases/ExportDataTableWithBase64Images/.NET/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images.csproj b/Use Cases/ExportDataTableWithBase64Images/.NET/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images.csproj index a55b933a..a81a117c 100644 --- a/Use Cases/ExportDataTableWithBase64Images/.NET/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images.csproj +++ b/Use Cases/ExportDataTableWithBase64Images/.NET/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Use Cases/ExportDataTableWithBase64Images/.NET/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images/Program.cs b/Use Cases/ExportDataTableWithBase64Images/.NET/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images/Program.cs index 585fd6f8..35a47f27 100644 --- a/Use Cases/ExportDataTableWithBase64Images/.NET/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images/Program.cs +++ b/Use Cases/ExportDataTableWithBase64Images/.NET/ExportDataTableWithBase64Images/ExportDataTableWithBase64Images/Program.cs @@ -87,3 +87,7 @@ private static string GetData() } } } + + + + diff --git a/Use Cases/Image to Gif/.NET/Image to Gif/Image to Gif/Image to Gif.csproj b/Use Cases/Image to Gif/.NET/Image to Gif/Image to Gif/Image to Gif.csproj index c8ad621f..004a47d0 100644 --- a/Use Cases/Image to Gif/.NET/Image to Gif/Image to Gif/Image to Gif.csproj +++ b/Use Cases/Image to Gif/.NET/Image to Gif/Image to Gif/Image to Gif.csproj @@ -18,7 +18,12 @@ Always + + Always + + + diff --git a/Use Cases/Image to Gif/.NET/Image to Gif/Image to Gif/Program.cs b/Use Cases/Image to Gif/.NET/Image to Gif/Image to Gif/Program.cs index d2b516c9..9155098a 100644 --- a/Use Cases/Image to Gif/.NET/Image to Gif/Image to Gif/Program.cs +++ b/Use Cases/Image to Gif/.NET/Image to Gif/Image to Gif/Program.cs @@ -59,3 +59,7 @@ public static void Main(string[] args) } } + + + + diff --git a/Use Cases/Multiple dependent dropdown/.NET/Multiple dependent dropdown/Multiple dependent dropdown/Multiple dependent dropdown.csproj b/Use Cases/Multiple dependent dropdown/.NET/Multiple dependent dropdown/Multiple dependent dropdown/Multiple dependent dropdown.csproj index 70965af2..e1639a7b 100644 --- a/Use Cases/Multiple dependent dropdown/.NET/Multiple dependent dropdown/Multiple dependent dropdown/Multiple dependent dropdown.csproj +++ b/Use Cases/Multiple dependent dropdown/.NET/Multiple dependent dropdown/Multiple dependent dropdown/Multiple dependent dropdown.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Use Cases/Multiple dependent dropdown/.NET/Multiple dependent dropdown/Multiple dependent dropdown/Program.cs b/Use Cases/Multiple dependent dropdown/.NET/Multiple dependent dropdown/Multiple dependent dropdown/Program.cs index 24bd80c2..93821f15 100644 --- a/Use Cases/Multiple dependent dropdown/.NET/Multiple dependent dropdown/Multiple dependent dropdown/Program.cs +++ b/Use Cases/Multiple dependent dropdown/.NET/Multiple dependent dropdown/Multiple dependent dropdown/Program.cs @@ -131,3 +131,7 @@ Private Sub Worksheet_SelectionChange(ByVal Target As Range) } } } + + + + diff --git a/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Nested-If-Function.csproj b/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Nested-If-Function.csproj index 16d1b33e..497aa3c9 100644 --- a/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Nested-If-Function.csproj +++ b/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Nested-If-Function.csproj @@ -60,4 +60,11 @@ - \ No newline at end of file + + + Always + + + + + diff --git a/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Output/.gitkeep b/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Program.cs b/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Program.cs index 343cd25b..a7f7fc14 100644 --- a/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Program.cs +++ b/Use Cases/Nested-If-Function/.NET/Nested-If-Function/Nested-If-Function/Program.cs @@ -39,3 +39,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Use Cases/Ranges-into-TwoDimensionalArray/.NET/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray/Program.cs b/Use Cases/Ranges-into-TwoDimensionalArray/.NET/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray/Program.cs index fdefc6a0..fd9756fd 100644 --- a/Use Cases/Ranges-into-TwoDimensionalArray/.NET/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray/Program.cs +++ b/Use Cases/Ranges-into-TwoDimensionalArray/.NET/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray/Program.cs @@ -51,3 +51,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Use Cases/Ranges-into-TwoDimensionalArray/.NET/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray.csproj b/Use Cases/Ranges-into-TwoDimensionalArray/.NET/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray.csproj index a09ffb47..e9237a75 100644 --- a/Use Cases/Ranges-into-TwoDimensionalArray/.NET/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray.csproj +++ b/Use Cases/Ranges-into-TwoDimensionalArray/.NET/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray/Ranges-into-TwoDimensionalArrray.csproj @@ -16,7 +16,11 @@ Always + + Always + + diff --git a/Use Cases/Read Excel using SFUploader/.NET/Read Excel using SFUploader/Read Excel using SFUploader/Program.cs b/Use Cases/Read Excel using SFUploader/.NET/Read Excel using SFUploader/Read Excel using SFUploader/Program.cs index 20f9083e..8036430d 100644 --- a/Use Cases/Read Excel using SFUploader/.NET/Read Excel using SFUploader/Read Excel using SFUploader/Program.cs +++ b/Use Cases/Read Excel using SFUploader/.NET/Read Excel using SFUploader/Read Excel using SFUploader/Program.cs @@ -1,4 +1,4 @@ -using Microsoft.AspNetCore.Components.Web; +using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; using Read_Excel_using_SFUploader; using Syncfusion.Blazor; @@ -11,3 +11,7 @@ builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); await builder.Build().RunAsync(); + + + + diff --git a/Use Cases/URL Validation/.NET/URL Validation/URL Validation/Program.cs b/Use Cases/URL Validation/.NET/URL Validation/URL Validation/Program.cs index 89a88a16..69a940cc 100644 --- a/Use Cases/URL Validation/.NET/URL Validation/URL Validation/Program.cs +++ b/Use Cases/URL Validation/.NET/URL Validation/URL Validation/Program.cs @@ -37,3 +37,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Use Cases/URL Validation/.NET/URL Validation/URL Validation/URL Validation.csproj b/Use Cases/URL Validation/.NET/URL Validation/URL Validation/URL Validation.csproj index df4749bc..7a0763d9 100644 --- a/Use Cases/URL Validation/.NET/URL Validation/URL Validation/URL Validation.csproj +++ b/Use Cases/URL Validation/.NET/URL Validation/URL Validation/URL Validation.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Use Cases/Watermark/NET Standard/Watermark/Watermark/Program.cs b/Use Cases/Watermark/NET Standard/Watermark/Watermark/Program.cs index 73c40ace..11949d7b 100644 --- a/Use Cases/Watermark/NET Standard/Watermark/Watermark/Program.cs +++ b/Use Cases/Watermark/NET Standard/Watermark/Watermark/Program.cs @@ -22,7 +22,7 @@ public static void Main(string[] args) worksheet.PageSetup.BackgoundImage = new Image(imageStream); //Save the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -33,3 +33,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Use Cases/Watermark/NET Standard/Watermark/Watermark/Watermark.csproj b/Use Cases/Watermark/NET Standard/Watermark/Watermark/Watermark.csproj index 90c103e9..f4317544 100644 --- a/Use Cases/Watermark/NET Standard/Watermark/Watermark/Watermark.csproj +++ b/Use Cases/Watermark/NET Standard/Watermark/Watermark/Watermark.csproj @@ -15,7 +15,12 @@ Always + + Always + + + diff --git a/What-If Analysis/Apply Scenario/.NET/Apply Scenario/Apply Scenario/Apply Scenario.csproj b/What-If Analysis/Apply Scenario/.NET/Apply Scenario/Apply Scenario/Apply Scenario.csproj index bb0c028a..4dbc61f4 100644 --- a/What-If Analysis/Apply Scenario/.NET/Apply Scenario/Apply Scenario/Apply Scenario.csproj +++ b/What-If Analysis/Apply Scenario/.NET/Apply Scenario/Apply Scenario/Apply Scenario.csproj @@ -16,7 +16,11 @@ Always + + Always + + diff --git a/What-If Analysis/Apply Scenario/.NET/Apply Scenario/Apply Scenario/Program.cs b/What-If Analysis/Apply Scenario/.NET/Apply Scenario/Apply Scenario/Program.cs index 55f8a047..fc9fb447 100644 --- a/What-If Analysis/Apply Scenario/.NET/Apply Scenario/Apply Scenario/Program.cs +++ b/What-If Analysis/Apply Scenario/.NET/Apply Scenario/Apply Scenario/Program.cs @@ -48,3 +48,7 @@ static void Main(string[] args) } } } + + + + diff --git a/What-If Analysis/Create Scenarios/.NET/Create Scenarios/Create Scenarios/Create Scenarios.csproj b/What-If Analysis/Create Scenarios/.NET/Create Scenarios/Create Scenarios/Create Scenarios.csproj index 4ce2a6dc..8985b8d4 100644 --- a/What-If Analysis/Create Scenarios/.NET/Create Scenarios/Create Scenarios/Create Scenarios.csproj +++ b/What-If Analysis/Create Scenarios/.NET/Create Scenarios/Create Scenarios/Create Scenarios.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/What-If Analysis/Create Scenarios/.NET/Create Scenarios/Create Scenarios/Program.cs b/What-If Analysis/Create Scenarios/.NET/Create Scenarios/Create Scenarios/Program.cs index e321ffb2..bacce4ab 100644 --- a/What-If Analysis/Create Scenarios/.NET/Create Scenarios/Create Scenarios/Program.cs +++ b/What-If Analysis/Create Scenarios/.NET/Create Scenarios/Create Scenarios/Program.cs @@ -40,7 +40,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CreateScenarios.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CreateScenarios.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -50,3 +50,7 @@ static void Main(string[] args) } } } + + + + diff --git a/What-If Analysis/Hide Scenario/.NET/Hide Scenario/Hide Scenario/Hide Scenario.csproj b/What-If Analysis/Hide Scenario/.NET/Hide Scenario/Hide Scenario/Hide Scenario.csproj index 298b1b1e..80966c00 100644 --- a/What-If Analysis/Hide Scenario/.NET/Hide Scenario/Hide Scenario/Hide Scenario.csproj +++ b/What-If Analysis/Hide Scenario/.NET/Hide Scenario/Hide Scenario/Hide Scenario.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/What-If Analysis/Hide Scenario/.NET/Hide Scenario/Hide Scenario/Program.cs b/What-If Analysis/Hide Scenario/.NET/Hide Scenario/Hide Scenario/Program.cs index c12421f0..a0ab75b1 100644 --- a/What-If Analysis/Hide Scenario/.NET/Hide Scenario/Hide Scenario/Program.cs +++ b/What-If Analysis/Hide Scenario/.NET/Hide Scenario/Hide Scenario/Program.cs @@ -31,7 +31,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HideScenario.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HideScenario.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } } + + + + diff --git a/What-If Analysis/Protect Scenario/.NET/Protect Scenario/Protect Scenario/Program.cs b/What-If Analysis/Protect Scenario/.NET/Protect Scenario/Protect Scenario/Program.cs index d05b3033..ef8bd23b 100644 --- a/What-If Analysis/Protect Scenario/.NET/Protect Scenario/Protect Scenario/Program.cs +++ b/What-If Analysis/Protect Scenario/.NET/Protect Scenario/Protect Scenario/Program.cs @@ -31,7 +31,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ProtectScenario.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ProtectScenario.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -42,3 +42,7 @@ static void Main(string[] args) } } } + + + + diff --git a/What-If Analysis/Protect Scenario/.NET/Protect Scenario/Protect Scenario/Protect Scenario.csproj b/What-If Analysis/Protect Scenario/.NET/Protect Scenario/Protect Scenario/Protect Scenario.csproj index 8efc3a26..17bd7b42 100644 --- a/What-If Analysis/Protect Scenario/.NET/Protect Scenario/Protect Scenario/Protect Scenario.csproj +++ b/What-If Analysis/Protect Scenario/.NET/Protect Scenario/Protect Scenario/Protect Scenario.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Access Worksheet/.NET/Access Worksheet/Access Worksheet/Program.cs b/Worksheet Features/Access Worksheet/.NET/Access Worksheet/Access Worksheet/Program.cs index 0327ff57..5ff10c08 100644 --- a/Worksheet Features/Access Worksheet/.NET/Access Worksheet/Access Worksheet/Program.cs +++ b/Worksheet Features/Access Worksheet/.NET/Access Worksheet/Access Worksheet/Program.cs @@ -28,3 +28,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Activate Worksheet.csproj b/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Activate Worksheet.csproj index 2975e521..e115cca6 100644 --- a/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Activate Worksheet.csproj +++ b/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Activate Worksheet.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Output/.gitkeep b/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Program.cs b/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Program.cs index 5ff57e5c..1f906d6c 100644 --- a/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Program.cs +++ b/Worksheet Features/Activate Worksheet/.NET/Activate Worksheet/Activate Worksheet/Program.cs @@ -23,20 +23,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ActivateWorksheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ActivateWorksheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ActivateWorksheet.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Copy Cell Range/.NET/Copy Cell Range/Copy Cell Range/Copy Cell Range.csproj b/Worksheet Features/Copy Cell Range/.NET/Copy Cell Range/Copy Cell Range/Copy Cell Range.csproj index b5115225..b8e28024 100644 --- a/Worksheet Features/Copy Cell Range/.NET/Copy Cell Range/Copy Cell Range/Copy Cell Range.csproj +++ b/Worksheet Features/Copy Cell Range/.NET/Copy Cell Range/Copy Cell Range/Copy Cell Range.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Copy Cell Range/.NET/Copy Cell Range/Copy Cell Range/Program.cs b/Worksheet Features/Copy Cell Range/.NET/Copy Cell Range/Copy Cell Range/Program.cs index 1ade2a76..ac9a2f8d 100644 --- a/Worksheet Features/Copy Cell Range/.NET/Copy Cell Range/Copy Cell Range/Program.cs +++ b/Worksheet Features/Copy Cell Range/.NET/Copy Cell Range/Copy Cell Range/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) source.CopyTo(destination); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -34,3 +34,7 @@ static void Main(string[] args) } } } + + + + diff --git a/Worksheet Features/Copy Column/.NET/Copy Column/Copy Column/Copy Column.csproj b/Worksheet Features/Copy Column/.NET/Copy Column/Copy Column/Copy Column.csproj index 1508b293..05eff8fc 100644 --- a/Worksheet Features/Copy Column/.NET/Copy Column/Copy Column/Copy Column.csproj +++ b/Worksheet Features/Copy Column/.NET/Copy Column/Copy Column/Copy Column.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Copy Column/.NET/Copy Column/Copy Column/Program.cs b/Worksheet Features/Copy Column/.NET/Copy Column/Copy Column/Program.cs index 3041b754..83ea3f65 100644 --- a/Worksheet Features/Copy Column/.NET/Copy Column/Copy Column/Program.cs +++ b/Worksheet Features/Copy Column/.NET/Copy Column/Copy Column/Program.cs @@ -28,7 +28,7 @@ public static void Main(string[] args) sourceColumn.EntireColumn.CopyTo(destinationColumn); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -38,3 +38,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Worksheet Features/Copy Row/.NET/Copy Row/Copy Row/Copy Row.csproj b/Worksheet Features/Copy Row/.NET/Copy Row/Copy Row/Copy Row.csproj index 32589cb2..87025a98 100644 --- a/Worksheet Features/Copy Row/.NET/Copy Row/Copy Row/Copy Row.csproj +++ b/Worksheet Features/Copy Row/.NET/Copy Row/Copy Row/Copy Row.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Copy Row/.NET/Copy Row/Copy Row/Program.cs b/Worksheet Features/Copy Row/.NET/Copy Row/Copy Row/Program.cs index 0038fa12..fa8eeaac 100644 --- a/Worksheet Features/Copy Row/.NET/Copy Row/Copy Row/Program.cs +++ b/Worksheet Features/Copy Row/.NET/Copy Row/Copy Row/Program.cs @@ -27,7 +27,7 @@ public static void Main(string[] args) sourceRow.EntireRow.CopyTo(destinationRow); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -37,3 +37,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Worksheet Features/Copy Workbook/.NET/Copy Workbook/Copy Workbook/Copy Workbook.csproj b/Worksheet Features/Copy Workbook/.NET/Copy Workbook/Copy Workbook/Copy Workbook.csproj index 30acd395..c57a41cf 100644 --- a/Worksheet Features/Copy Workbook/.NET/Copy Workbook/Copy Workbook/Copy Workbook.csproj +++ b/Worksheet Features/Copy Workbook/.NET/Copy Workbook/Copy Workbook/Copy Workbook.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Copy Workbook/.NET/Copy Workbook/Copy Workbook/Program.cs b/Worksheet Features/Copy Workbook/.NET/Copy Workbook/Copy Workbook/Program.cs index 43cec27c..b3ed7a9f 100644 --- a/Worksheet Features/Copy Workbook/.NET/Copy Workbook/Copy Workbook/Program.cs +++ b/Worksheet Features/Copy Workbook/.NET/Copy Workbook/Copy Workbook/Program.cs @@ -22,7 +22,7 @@ public static void Main(string[] args) destinationWorkbook = sourceWorkbook.Clone(); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); destinationWorkbook.SaveAs(outputStream); //Dispose streams @@ -33,3 +33,7 @@ public static void Main(string[] args) } } } + + + + diff --git a/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Copy Worksheet.csproj b/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Copy Worksheet.csproj index 1d146f75..45169b6b 100644 --- a/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Copy Worksheet.csproj +++ b/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Copy Worksheet.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Output/.gitkeep b/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Program.cs b/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Program.cs index 01d77e3f..d14412b2 100644 --- a/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Program.cs +++ b/Worksheet Features/Copy Worksheet/.NET/Copy Worksheet/Copy Worksheet/Program.cs @@ -26,7 +26,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CopyWorksheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CopyWorksheet.xlsx"), FileMode.Create, FileAccess.Write); destinationWorkbook.SaveAs(outputStream); #endregion @@ -34,14 +34,11 @@ static void Main(string[] args) outputStream.Dispose(); destinationStream.Dispose(); sourceStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CopyWorksheet.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Create Worksheet.csproj b/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Create Worksheet.csproj index a53642e7..a9983fd9 100644 --- a/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Create Worksheet.csproj +++ b/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Create Worksheet.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Output/.gitkeep b/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Program.cs b/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Program.cs index 9b667ae7..f1a85ce0 100644 --- a/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Program.cs +++ b/Worksheet Features/Create Worksheet/.NET/Create Worksheet/Create Worksheet/Program.cs @@ -23,20 +23,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("CreateWorksheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/CreateWorksheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("CreateWorksheet.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/FitToPagesTall.csproj b/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/FitToPagesTall.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/FitToPagesTall.csproj +++ b/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/FitToPagesTall.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/Output/.gitkeep b/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/Program.cs b/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/Program.cs index 5a05861f..58e779a6 100644 --- a/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/Program.cs +++ b/Worksheet Features/FitToPagesTall/.NET/FitToPagesTall/FitToPagesTall/Program.cs @@ -31,20 +31,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FitToPagesTall.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FitToPagesTall.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("FitToPagesTall.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/FitToPagesWide.csproj b/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/FitToPagesWide.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/FitToPagesWide.csproj +++ b/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/FitToPagesWide.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/Output/.gitkeep b/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/Program.cs b/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/Program.cs index a13fc14e..c6a4fd01 100644 --- a/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/Program.cs +++ b/Worksheet Features/FitToPagesWide/.NET/FitToPagesWide/FitToPagesWide/Program.cs @@ -31,20 +31,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FitToPagesWide.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FitToPagesWide.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("FitToPagesWide.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Freeze Columns/.NET/Freeze Columns/Freeze Columns/Freeze Columns.csproj b/Worksheet Features/Freeze Columns/.NET/Freeze Columns/Freeze Columns/Freeze Columns.csproj index 23c02c2d..b8e70128 100644 --- a/Worksheet Features/Freeze Columns/.NET/Freeze Columns/Freeze Columns/Freeze Columns.csproj +++ b/Worksheet Features/Freeze Columns/.NET/Freeze Columns/Freeze Columns/Freeze Columns.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Freeze Columns/.NET/Freeze Columns/Freeze Columns/Program.cs b/Worksheet Features/Freeze Columns/.NET/Freeze Columns/Freeze Columns/Program.cs index 344b119d..6f587ccf 100644 --- a/Worksheet Features/Freeze Columns/.NET/Freeze Columns/Freeze Columns/Program.cs +++ b/Worksheet Features/Freeze Columns/.NET/Freeze Columns/Freeze Columns/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) worksheet.FirstVisibleColumn = 4; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Freeze Panes.csproj b/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Freeze Panes.csproj index 817240e8..b5cd0b3e 100644 --- a/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Freeze Panes.csproj +++ b/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Freeze Panes.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Output/.gitkeep b/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Program.cs b/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Program.cs index 2b8ce364..d6ac4a6c 100644 --- a/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Program.cs +++ b/Worksheet Features/Freeze Panes/.NET/Freeze Panes/Freeze Panes/Program.cs @@ -31,20 +31,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("FreezePanes.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/FreezePanes.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("FreezePanes.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Freeze Rows/.NET/Freeze Rows/Freeze Rows/Freeze Rows.csproj b/Worksheet Features/Freeze Rows/.NET/Freeze Rows/Freeze Rows/Freeze Rows.csproj index be5783dc..b69d370f 100644 --- a/Worksheet Features/Freeze Rows/.NET/Freeze Rows/Freeze Rows/Freeze Rows.csproj +++ b/Worksheet Features/Freeze Rows/.NET/Freeze Rows/Freeze Rows/Freeze Rows.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Freeze Rows/.NET/Freeze Rows/Freeze Rows/Program.cs b/Worksheet Features/Freeze Rows/.NET/Freeze Rows/Freeze Rows/Program.cs index a4836227..11261f0b 100644 --- a/Worksheet Features/Freeze Rows/.NET/Freeze Rows/Freeze Rows/Program.cs +++ b/Worksheet Features/Freeze Rows/.NET/Freeze Rows/Freeze Rows/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) worksheet.FirstVisibleRow = 3; //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/Header and Footer/.NET/Header and Footer/Header and Footer/Header and Footer.csproj b/Worksheet Features/Header and Footer/.NET/Header and Footer/Header and Footer/Header and Footer.csproj index 6c04d704..d0822010 100644 --- a/Worksheet Features/Header and Footer/.NET/Header and Footer/Header and Footer/Header and Footer.csproj +++ b/Worksheet Features/Header and Footer/.NET/Header and Footer/Header and Footer/Header and Footer.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Header and Footer/.NET/Header and Footer/Header and Footer/Program.cs b/Worksheet Features/Header and Footer/.NET/Header and Footer/Header and Footer/Program.cs index bf7b5483..4ccdcab4 100644 --- a/Worksheet Features/Header and Footer/.NET/Header and Footer/Header and Footer/Program.cs +++ b/Worksheet Features/Header and Footer/.NET/Header and Footer/Header and Footer/Program.cs @@ -39,3 +39,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Hide Gridlines.csproj b/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Hide Gridlines.csproj index c1c26521..a812ef8d 100644 --- a/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Hide Gridlines.csproj +++ b/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Hide Gridlines.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Output/.gitkeep b/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Program.cs b/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Program.cs index a5477aa5..9ee0bff6 100644 --- a/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Program.cs +++ b/Worksheet Features/Hide Gridlines/.NET/Hide Gridlines/Hide Gridlines/Program.cs @@ -22,20 +22,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HideGridlines.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HideGridlines.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HideGridlines.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Hide Row and Column Headers.csproj b/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Hide Row and Column Headers.csproj index 6b6b19ed..1f607edd 100644 --- a/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Hide Row and Column Headers.csproj +++ b/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Hide Row and Column Headers.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Output/.gitkeep b/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Program.cs b/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Program.cs index 82f6c9e8..e69dc364 100644 --- a/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Program.cs +++ b/Worksheet Features/Hide Row and Column Headers/.NET/Hide Row and Column Headers/Hide Row and Column Headers/Program.cs @@ -22,20 +22,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HideRowandColumnHeaders.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HideRowandColumnHeaders.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HideRowandColumnHeaders.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Hide Row and Column/.NET/Hide Row and Column/Hide Row and Column/Hide Row and Column.csproj b/Worksheet Features/Hide Row and Column/.NET/Hide Row and Column/Hide Row and Column/Hide Row and Column.csproj index 124227e0..ce748e73 100644 --- a/Worksheet Features/Hide Row and Column/.NET/Hide Row and Column/Hide Row and Column/Hide Row and Column.csproj +++ b/Worksheet Features/Hide Row and Column/.NET/Hide Row and Column/Hide Row and Column/Hide Row and Column.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Hide Row and Column/.NET/Hide Row and Column/Hide Row and Column/Program.cs b/Worksheet Features/Hide Row and Column/.NET/Hide Row and Column/Hide Row and Column/Program.cs index a060a9cd..afde2ac0 100644 --- a/Worksheet Features/Hide Row and Column/.NET/Hide Row and Column/Hide Row and Column/Program.cs +++ b/Worksheet Features/Hide Row and Column/.NET/Hide Row and Column/Hide Row and Column/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) worksheet.HideColumn(2); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -32,3 +32,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Hide Worksheet Tabs.csproj b/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Hide Worksheet Tabs.csproj index 7d96e8d9..8d52fa2f 100644 --- a/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Hide Worksheet Tabs.csproj +++ b/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Hide Worksheet Tabs.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Output/.gitkeep b/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Program.cs b/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Program.cs index f5a02a0b..e345e4f2 100644 --- a/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Program.cs +++ b/Worksheet Features/Hide Worksheet Tabs/.NET/Hide Worksheet Tabs/Hide Worksheet Tabs/Program.cs @@ -24,20 +24,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HideWorksheetTabs.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HideWorksheetTabs.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HideWorksheetTabs.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Hide Worksheet.csproj b/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Hide Worksheet.csproj index 975d3231..38cf2ec2 100644 --- a/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Hide Worksheet.csproj +++ b/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Hide Worksheet.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Output/.gitkeep b/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Program.cs b/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Program.cs index e4c949d3..5006cb9b 100644 --- a/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Program.cs +++ b/Worksheet Features/Hide Worksheet/.NET/Hide Worksheet/Hide Worksheet/Program.cs @@ -23,20 +23,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HideWorksheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HideWorksheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HideWorksheet.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Highlight Worksheet Tab.csproj b/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Highlight Worksheet Tab.csproj index 22de2f68..9c172504 100644 --- a/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Highlight Worksheet Tab.csproj +++ b/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Highlight Worksheet Tab.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Output/.gitkeep b/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Program.cs b/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Program.cs index 783a8771..7e4b8edb 100644 --- a/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Program.cs +++ b/Worksheet Features/Highlight Worksheet Tab/.NET/Highlight Worksheet Tab/Highlight Worksheet Tab/Program.cs @@ -21,20 +21,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("HighlightSheetTab.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/HighlightSheetTab.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("HighlightSheetTab.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/IsFitToPage.csproj b/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/IsFitToPage.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/IsFitToPage.csproj +++ b/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/IsFitToPage.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/Output/.gitkeep b/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/Program.cs b/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/Program.cs index 291c4500..98255272 100644 --- a/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/Program.cs +++ b/Worksheet Features/IsFitToPage/.NET/IsFitToPage/IsFitToPage/Program.cs @@ -30,20 +30,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("IsFitToPage.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/IsFitToPage.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("IsFitToPage.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/IsSummaryColumnRight.csproj b/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/IsSummaryColumnRight.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/IsSummaryColumnRight.csproj +++ b/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/IsSummaryColumnRight.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/Output/.gitkeep b/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/Program.cs b/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/Program.cs index 63ae5d28..56174aaa 100644 --- a/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/Program.cs +++ b/Worksheet Features/IsSummaryColumnRight/.NET/IsSummaryColumnRight/IsSummaryColumnRight/Program.cs @@ -33,20 +33,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SummaryColumnRight.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SummaryColumnRight.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("SummaryColumnRight.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/IsSummaryRowBelow.csproj b/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/IsSummaryRowBelow.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/IsSummaryRowBelow.csproj +++ b/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/IsSummaryRowBelow.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/Output/.gitkeep b/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/Program.cs b/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/Program.cs index 2f4a51db..0495aff8 100644 --- a/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/Program.cs +++ b/Worksheet Features/IsSummaryRowBelow/.NET/IsSummaryRowBelow/IsSummaryRowBelow/Program.cs @@ -33,20 +33,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SummaryRowBelow.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SummaryRowBelow.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("SummaryRowBelow.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Move Cell Range/.NET/Move Cell Range/Move Cell Range/Move Cell Range.csproj b/Worksheet Features/Move Cell Range/.NET/Move Cell Range/Move Cell Range/Move Cell Range.csproj index 56bec212..7b52462d 100644 --- a/Worksheet Features/Move Cell Range/.NET/Move Cell Range/Move Cell Range/Move Cell Range.csproj +++ b/Worksheet Features/Move Cell Range/.NET/Move Cell Range/Move Cell Range/Move Cell Range.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Move Cell Range/.NET/Move Cell Range/Move Cell Range/Program.cs b/Worksheet Features/Move Cell Range/.NET/Move Cell Range/Move Cell Range/Program.cs index 6d53872c..de5b1499 100644 --- a/Worksheet Features/Move Cell Range/.NET/Move Cell Range/Move Cell Range/Program.cs +++ b/Worksheet Features/Move Cell Range/.NET/Move Cell Range/Move Cell Range/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) source.MoveTo(destination); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/Move Column/.NET/Move Column/Move Column/Move Column.csproj b/Worksheet Features/Move Column/.NET/Move Column/Move Column/Move Column.csproj index bd111114..36af5014 100644 --- a/Worksheet Features/Move Column/.NET/Move Column/Move Column/Move Column.csproj +++ b/Worksheet Features/Move Column/.NET/Move Column/Move Column/Move Column.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Move Column/.NET/Move Column/Move Column/Program.cs b/Worksheet Features/Move Column/.NET/Move Column/Move Column/Program.cs index 2a831f55..df01ec1d 100644 --- a/Worksheet Features/Move Column/.NET/Move Column/Move Column/Program.cs +++ b/Worksheet Features/Move Column/.NET/Move Column/Move Column/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) source.EntireColumn.MoveTo(destination); //Saving the workbook - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/Move Row/.NET/Move Row/Move Row/Move Row.csproj b/Worksheet Features/Move Row/.NET/Move Row/Move Row/Move Row.csproj index e9d6f443..f3e0b71e 100644 --- a/Worksheet Features/Move Row/.NET/Move Row/Move Row/Move Row.csproj +++ b/Worksheet Features/Move Row/.NET/Move Row/Move Row/Move Row.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Move Row/.NET/Move Row/Move Row/Program.cs b/Worksheet Features/Move Row/.NET/Move Row/Move Row/Program.cs index 49fe82cb..82e8a2b5 100644 --- a/Worksheet Features/Move Row/.NET/Move Row/Move Row/Program.cs +++ b/Worksheet Features/Move Row/.NET/Move Row/Move Row/Program.cs @@ -24,7 +24,7 @@ static void Main(string[] args) sourceRow.EntireRow.MoveTo(destinationRow); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Move Worksheet.csproj b/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Move Worksheet.csproj index 5d62c4e4..80388f7c 100644 --- a/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Move Worksheet.csproj +++ b/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Move Worksheet.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Output/.gitkeep b/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Program.cs b/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Program.cs index faccb0e1..5c5eccc5 100644 --- a/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Program.cs +++ b/Worksheet Features/Move Worksheet/.NET/Move Worksheet/Move Worksheet/Program.cs @@ -22,20 +22,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MoveWorksheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MoveWorksheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("MoveWorksheet.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/Output/.gitkeep b/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/PrintArea.csproj b/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/PrintArea.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/PrintArea.csproj +++ b/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/PrintArea.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/Program.cs b/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/Program.cs index b4d6e132..48d14ffb 100644 --- a/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/Program.cs +++ b/Worksheet Features/PrintArea/.NET/PrintArea/PrintArea/Program.cs @@ -30,20 +30,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PrintArea.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PrintArea.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("PrintArea.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/Output/.gitkeep b/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/PrintGridlines.csproj b/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/PrintGridlines.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/PrintGridlines.csproj +++ b/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/PrintGridlines.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/Program.cs b/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/Program.cs index 0bc2ce81..ad6e40bd 100644 --- a/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/Program.cs +++ b/Worksheet Features/PrintGridlines/.NET/PrintGridlines/PrintGridlines/Program.cs @@ -30,20 +30,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PrintGridlines.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PrintGridlines.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("PrintGridlines.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/Output/.gitkeep b/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/PrintHeadings.csproj b/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/PrintHeadings.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/PrintHeadings.csproj +++ b/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/PrintHeadings.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/Program.cs b/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/Program.cs index 434a0f5e..ae16452e 100644 --- a/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/Program.cs +++ b/Worksheet Features/PrintHeadings/.NET/PrintHeadings/PrintHeadings/Program.cs @@ -30,20 +30,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PrintHeadings.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PrintHeadings.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("PrintHeadings.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/Output/.gitkeep b/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/PrintTitleColumns.csproj b/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/PrintTitleColumns.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/PrintTitleColumns.csproj +++ b/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/PrintTitleColumns.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/Program.cs b/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/Program.cs index 0e790298..6ee1c435 100644 --- a/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/Program.cs +++ b/Worksheet Features/PrintTitleColumns/.NET/PrintTitleColumns/PrintTitleColumns/Program.cs @@ -31,20 +31,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PrintTitleColumns.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PrintTitleColumns.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("PrintTitleColumns.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/Output/.gitkeep b/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/PrintTitleRows.csproj b/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/PrintTitleRows.csproj index f88e1fff..819b14e2 100644 --- a/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/PrintTitleRows.csproj +++ b/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/PrintTitleRows.csproj @@ -1,4 +1,4 @@ - + Exe @@ -11,4 +11,11 @@ + + + Always + + + + diff --git a/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/Program.cs b/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/Program.cs index 004a3fcc..86f0ba51 100644 --- a/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/Program.cs +++ b/Worksheet Features/PrintTitleRows/.NET/PrintTitleRows/PrintTitleRows/Program.cs @@ -31,20 +31,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("PrintTitleRows.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/PrintTitleRows.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("PrintTitleRows.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Output/.gitkeep b/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Program.cs b/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Program.cs index 1b3d2110..614eb218 100644 --- a/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Program.cs +++ b/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Program.cs @@ -22,21 +22,18 @@ static void Main(string[] args) #region Save CSV //Saving the workbook - FileStream outputStream = new FileStream("ReadandSaveCSV.csv", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ReadandSaveCSV.csv"), FileMode.Create, FileAccess.Write); worksheet.SaveAs(outputStream, ","); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("ReadandSaveCSV.csv") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Read and Save CSV.csproj b/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Read and Save CSV.csproj index 71ed939e..a12872b9 100644 --- a/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Read and Save CSV.csproj +++ b/Worksheet Features/Read and Save CSV/.NET/Read and Save CSV/Read and Save CSV/Read and Save CSV.csproj @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Output/.gitkeep b/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Program.cs b/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Program.cs index 0781e743..f9fd09ec 100644 --- a/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Program.cs +++ b/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Program.cs @@ -21,21 +21,18 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("RemoveWorksheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveWorksheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); inputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("RemoveWorksheet.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Remove Worksheet.csproj b/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Remove Worksheet.csproj index 9db83082..af33cb9f 100644 --- a/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Remove Worksheet.csproj +++ b/Worksheet Features/Remove Worksheet/.NET/Remove Worksheet/Remove Worksheet/Remove Worksheet.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Output/.gitkeep b/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Program.cs b/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Program.cs index 799d4c3f..b283e5e6 100644 --- a/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Program.cs +++ b/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Program.cs @@ -17,20 +17,17 @@ static void Main(string[] args) #region Save as text file //Saving the workbook - FileStream outputStream = new FileStream("TextFile.txt", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/TextFile.txt"), FileMode.Create, FileAccess.Write); worksheet.SaveAs(outputStream, " "); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("TextFile.txt") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Save TextFile.csproj b/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Save TextFile.csproj index f695cc0d..d3537238 100644 --- a/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Save TextFile.csproj +++ b/Worksheet Features/Save TextFile/.NET/Save TextFile/Save TextFile/Save TextFile.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Output/.gitkeep b/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Program.cs b/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Program.cs index c4f229ae..4043d4ca 100644 --- a/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Program.cs +++ b/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Program.cs @@ -22,20 +22,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SetZoomLevel.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SetZoomLevel.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("SetZoomLevel.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Set Zoom Level.csproj b/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Set Zoom Level.csproj index 07ea2dee..7be47a3e 100644 --- a/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Set Zoom Level.csproj +++ b/Worksheet Features/Set Zoom Level/.NET/Set Zoom Level/Set Zoom Level/Set Zoom Level.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/Show Row and Column/.NET/Show Row and Column/Show Row and Column/Program.cs b/Worksheet Features/Show Row and Column/.NET/Show Row and Column/Show Row and Column/Program.cs index 43e8e7aa..286da8ac 100644 --- a/Worksheet Features/Show Row and Column/.NET/Show Row and Column/Show Row and Column/Program.cs +++ b/Worksheet Features/Show Row and Column/.NET/Show Row and Column/Show Row and Column/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) worksheet.ShowColumn(2, true); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); //Dispose streams @@ -32,3 +32,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/Show Row and Column/.NET/Show Row and Column/Show Row and Column/Show Row and Column.csproj b/Worksheet Features/Show Row and Column/.NET/Show Row and Column/Show Row and Column/Show Row and Column.csproj index 9182d39a..6d100ede 100644 --- a/Worksheet Features/Show Row and Column/.NET/Show Row and Column/Show Row and Column/Show Row and Column.csproj +++ b/Worksheet Features/Show Row and Column/.NET/Show Row and Column/Show Row and Column/Show Row and Column.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Output/.gitkeep b/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Program.cs b/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Program.cs index 9bcf11cf..5c223653 100644 --- a/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Program.cs +++ b/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Program.cs @@ -26,20 +26,17 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("SplitPanes.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/SplitPanes.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion //Dispose streams outputStream.Dispose(); - - System.Diagnostics.Process process = new System.Diagnostics.Process(); - process.StartInfo = new System.Diagnostics.ProcessStartInfo("SplitPanes.xlsx") - { - UseShellExecute = true - }; - process.Start(); } } } } + + + + diff --git a/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Split Panes.csproj b/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Split Panes.csproj index 68dcfea0..b86c61e1 100644 --- a/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Split Panes.csproj +++ b/Worksheet Features/Split Panes/.NET/Split Panes/Split Panes/Split Panes.csproj @@ -1,4 +1,4 @@ - + Exe @@ -10,4 +10,11 @@ + + + Always + + + + diff --git a/Worksheet Features/UnFreeze Panes/.NET/UnFreeze Panes/UnFreeze Panes/Program.cs b/Worksheet Features/UnFreeze Panes/.NET/UnFreeze Panes/UnFreeze Panes/Program.cs index f2ad3ed3..d06223e5 100644 --- a/Worksheet Features/UnFreeze Panes/.NET/UnFreeze Panes/UnFreeze Panes/Program.cs +++ b/Worksheet Features/UnFreeze Panes/.NET/UnFreeze Panes/UnFreeze Panes/Program.cs @@ -19,7 +19,7 @@ static void Main(string[] args) worksheet.RemovePanes(); //Saving the workbook as stream - FileStream outputStream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite); workbook.SaveAs(outputStream); //Dispose streams @@ -30,3 +30,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet Features/UnFreeze Panes/.NET/UnFreeze Panes/UnFreeze Panes/UnFreeze Panes.csproj b/Worksheet Features/UnFreeze Panes/.NET/UnFreeze Panes/UnFreeze Panes/UnFreeze Panes.csproj index 17a20762..a03d8810 100644 --- a/Worksheet Features/UnFreeze Panes/.NET/UnFreeze Panes/UnFreeze Panes/UnFreeze Panes.csproj +++ b/Worksheet Features/UnFreeze Panes/.NET/UnFreeze Panes/UnFreeze Panes/UnFreeze Panes.csproj @@ -16,7 +16,12 @@ Always + + Always + + + diff --git a/Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image/Program.cs b/Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image/Program.cs index efadb9a8..bc2cb653 100644 --- a/Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image/Program.cs +++ b/Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image/Program.cs @@ -21,7 +21,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("Image.png", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Image.png"), FileMode.Create, FileAccess.Write); sheet.ConvertToImage(sheet.UsedRange, outputStream); #endregion @@ -33,3 +33,7 @@ static void Main(string[] args) } } + + + + diff --git a/Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image/Worksheet to Image.csproj b/Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image/Worksheet to Image.csproj index 8277b3e4..3c845029 100644 --- a/Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image/Worksheet to Image.csproj +++ b/Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image/Worksheet to Image.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Decrypt-Excel/.NET/Decrypt-Excel/Decrypt-Excel/Decrypt-Excel.csproj b/XlsIO-Excel-Protect-UnProtect/Decrypt-Excel/.NET/Decrypt-Excel/Decrypt-Excel/Decrypt-Excel.csproj index 97a844a8..41b152b7 100644 --- a/XlsIO-Excel-Protect-UnProtect/Decrypt-Excel/.NET/Decrypt-Excel/Decrypt-Excel/Decrypt-Excel.csproj +++ b/XlsIO-Excel-Protect-UnProtect/Decrypt-Excel/.NET/Decrypt-Excel/Decrypt-Excel/Decrypt-Excel.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Decrypt-Excel/.NET/Decrypt-Excel/Decrypt-Excel/Program.cs b/XlsIO-Excel-Protect-UnProtect/Decrypt-Excel/.NET/Decrypt-Excel/Decrypt-Excel/Program.cs index a4db1ba2..952d2434 100644 --- a/XlsIO-Excel-Protect-UnProtect/Decrypt-Excel/.NET/Decrypt-Excel/Decrypt-Excel/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/Decrypt-Excel/.NET/Decrypt-Excel/Decrypt-Excel/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("DecryptedWorkbook.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/DecryptedWorkbook.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Encrypt-Excel/.NET/Encrypt-Excel/Encrypt-Excel/Encrypt-Excel.csproj b/XlsIO-Excel-Protect-UnProtect/Encrypt-Excel/.NET/Encrypt-Excel/Encrypt-Excel/Encrypt-Excel.csproj index 628f115d..ad4622bd 100644 --- a/XlsIO-Excel-Protect-UnProtect/Encrypt-Excel/.NET/Encrypt-Excel/Encrypt-Excel/Encrypt-Excel.csproj +++ b/XlsIO-Excel-Protect-UnProtect/Encrypt-Excel/.NET/Encrypt-Excel/Encrypt-Excel/Encrypt-Excel.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Encrypt-Excel/.NET/Encrypt-Excel/Encrypt-Excel/Program.cs b/XlsIO-Excel-Protect-UnProtect/Encrypt-Excel/.NET/Encrypt-Excel/Encrypt-Excel/Program.cs index faa40acc..9db454f5 100644 --- a/XlsIO-Excel-Protect-UnProtect/Encrypt-Excel/.NET/Encrypt-Excel/Encrypt-Excel/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/Encrypt-Excel/.NET/Encrypt-Excel/Encrypt-Excel/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("EncryptedWorkbook.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/EncryptedWorkbook.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Locked-Cells/.NET/Locked-Cells/LockedCells/LockedCells.csproj b/XlsIO-Excel-Protect-UnProtect/Locked-Cells/.NET/Locked-Cells/LockedCells/LockedCells.csproj index 4c8b70c2..9eb70477 100644 --- a/XlsIO-Excel-Protect-UnProtect/Locked-Cells/.NET/Locked-Cells/LockedCells/LockedCells.csproj +++ b/XlsIO-Excel-Protect-UnProtect/Locked-Cells/.NET/Locked-Cells/LockedCells/LockedCells.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Locked-Cells/.NET/Locked-Cells/LockedCells/Program.cs b/XlsIO-Excel-Protect-UnProtect/Locked-Cells/.NET/Locked-Cells/LockedCells/Program.cs index 8e55aa9b..66a958d3 100644 --- a/XlsIO-Excel-Protect-UnProtect/Locked-Cells/.NET/Locked-Cells/LockedCells/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/Locked-Cells/.NET/Locked-Cells/LockedCells/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("LockedCells.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/LockedCells.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Mark-As-Final/.NET/Mark-As-Final/Mark-As-Final/Mark-As-Final.csproj b/XlsIO-Excel-Protect-UnProtect/Mark-As-Final/.NET/Mark-As-Final/Mark-As-Final/Mark-As-Final.csproj index 356541f3..d41e6cca 100644 --- a/XlsIO-Excel-Protect-UnProtect/Mark-As-Final/.NET/Mark-As-Final/Mark-As-Final/Mark-As-Final.csproj +++ b/XlsIO-Excel-Protect-UnProtect/Mark-As-Final/.NET/Mark-As-Final/Mark-As-Final/Mark-As-Final.csproj @@ -14,7 +14,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Mark-As-Final/.NET/Mark-As-Final/Mark-As-Final/Program.cs b/XlsIO-Excel-Protect-UnProtect/Mark-As-Final/.NET/Mark-As-Final/Mark-As-Final/Program.cs index 31f41226..71b2a2c4 100644 --- a/XlsIO-Excel-Protect-UnProtect/Mark-As-Final/.NET/Mark-As-Final/Mark-As-Final/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/Mark-As-Final/.NET/Mark-As-Final/Mark-As-Final/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("MarkAsFinal.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/MarkAsFinal.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -32,3 +32,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook/Program.cs b/XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook/Program.cs index 4beeb08c..0c64569b 100644 --- a/XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ProtectedWorkbook.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ProtectedWorkbook.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook/ProtectWorkbook.csproj b/XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook/ProtectWorkbook.csproj index 4c8b70c2..9eb70477 100644 --- a/XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook/ProtectWorkbook.csproj +++ b/XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook/ProtectWorkbook.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Protect-Worksheet/.NET/Protect-Worksheet/ProtectWorksheet/Program.cs b/XlsIO-Excel-Protect-UnProtect/Protect-Worksheet/.NET/Protect-Worksheet/ProtectWorksheet/Program.cs index 25eb0c58..b5009209 100644 --- a/XlsIO-Excel-Protect-UnProtect/Protect-Worksheet/.NET/Protect-Worksheet/ProtectWorksheet/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/Protect-Worksheet/.NET/Protect-Worksheet/ProtectWorksheet/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ProtectedSheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ProtectedSheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/Protect-Worksheet/.NET/Protect-Worksheet/ProtectWorksheet/ProtectWorksheet.csproj b/XlsIO-Excel-Protect-UnProtect/Protect-Worksheet/.NET/Protect-Worksheet/ProtectWorksheet/ProtectWorksheet.csproj index 4c8b70c2..9eb70477 100644 --- a/XlsIO-Excel-Protect-UnProtect/Protect-Worksheet/.NET/Protect-Worksheet/ProtectWorksheet/ProtectWorksheet.csproj +++ b/XlsIO-Excel-Protect-UnProtect/Protect-Worksheet/.NET/Protect-Worksheet/ProtectWorksheet/ProtectWorksheet.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/ReadOnly/.NET/ReadOnly/ReadOnly/Program.cs b/XlsIO-Excel-Protect-UnProtect/ReadOnly/.NET/ReadOnly/ReadOnly/Program.cs index 6d4d8fe8..2841f6bf 100644 --- a/XlsIO-Excel-Protect-UnProtect/ReadOnly/.NET/ReadOnly/ReadOnly/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/ReadOnly/.NET/ReadOnly/ReadOnly/Program.cs @@ -22,7 +22,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("ReadOnly.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/ReadOnly.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -34,3 +34,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/ReadOnly/.NET/ReadOnly/ReadOnly/ReadOnly.csproj b/XlsIO-Excel-Protect-UnProtect/ReadOnly/.NET/ReadOnly/ReadOnly/ReadOnly.csproj index 4c8b70c2..9eb70477 100644 --- a/XlsIO-Excel-Protect-UnProtect/ReadOnly/.NET/ReadOnly/ReadOnly/ReadOnly.csproj +++ b/XlsIO-Excel-Protect-UnProtect/ReadOnly/.NET/ReadOnly/ReadOnly/ReadOnly.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/UnProtect-Workbook/.NET/UnProtect-Workbook/UnProtectWorkbook/Program.cs b/XlsIO-Excel-Protect-UnProtect/UnProtect-Workbook/.NET/UnProtect-Workbook/UnProtectWorkbook/Program.cs index 435a4b69..a45ba488 100644 --- a/XlsIO-Excel-Protect-UnProtect/UnProtect-Workbook/.NET/UnProtect-Workbook/UnProtectWorkbook/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/UnProtect-Workbook/.NET/UnProtect-Workbook/UnProtectWorkbook/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("UnProtectedWorkbook.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/UnProtectedWorkbook.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/UnProtect-Workbook/.NET/UnProtect-Workbook/UnProtectWorkbook/UnProtectWorkbook.csproj b/XlsIO-Excel-Protect-UnProtect/UnProtect-Workbook/.NET/UnProtect-Workbook/UnProtectWorkbook/UnProtectWorkbook.csproj index 4c8b70c2..9eb70477 100644 --- a/XlsIO-Excel-Protect-UnProtect/UnProtect-Workbook/.NET/UnProtect-Workbook/UnProtectWorkbook/UnProtectWorkbook.csproj +++ b/XlsIO-Excel-Protect-UnProtect/UnProtect-Workbook/.NET/UnProtect-Workbook/UnProtectWorkbook/UnProtectWorkbook.csproj @@ -13,7 +13,12 @@ Always + + Always + + + diff --git a/XlsIO-Excel-Protect-UnProtect/UnProtect-Worksheet/.NET/UnProtect-Worksheet/UnProtectWorksheet/Program.cs b/XlsIO-Excel-Protect-UnProtect/UnProtect-Worksheet/.NET/UnProtect-Worksheet/UnProtectWorksheet/Program.cs index 5cc9d5f3..660dafaa 100644 --- a/XlsIO-Excel-Protect-UnProtect/UnProtect-Worksheet/.NET/UnProtect-Worksheet/UnProtectWorksheet/Program.cs +++ b/XlsIO-Excel-Protect-UnProtect/UnProtect-Worksheet/.NET/UnProtect-Worksheet/UnProtectWorksheet/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) #region Save //Saving the workbook - FileStream outputStream = new FileStream("UnProtectedSheet.xlsx", FileMode.Create, FileAccess.Write); + FileStream outputStream = new FileStream(Path.GetFullPath("Output/UnProtectedSheet.xlsx"), FileMode.Create, FileAccess.Write); workbook.SaveAs(outputStream); #endregion @@ -35,3 +35,7 @@ static void Main(string[] args) } } + + + + diff --git a/XlsIO-Excel-Protect-UnProtect/UnProtect-Worksheet/.NET/UnProtect-Worksheet/UnProtectWorksheet/UnProtectWorksheet.csproj b/XlsIO-Excel-Protect-UnProtect/UnProtect-Worksheet/.NET/UnProtect-Worksheet/UnProtectWorksheet/UnProtectWorksheet.csproj index 4c8b70c2..9eb70477 100644 --- a/XlsIO-Excel-Protect-UnProtect/UnProtect-Worksheet/.NET/UnProtect-Worksheet/UnProtectWorksheet/UnProtectWorksheet.csproj +++ b/XlsIO-Excel-Protect-UnProtect/UnProtect-Worksheet/.NET/UnProtect-Worksheet/UnProtectWorksheet/UnProtectWorksheet.csproj @@ -13,7 +13,12 @@ Always + + Always + + +