From 55ee5558efc07c261aafb64f863f25d77651bd6a Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Mon, 19 Aug 2024 17:02:50 +0530 Subject: [PATCH 01/19] Animations --- .../Add-animation-effect-to-PowerPoint-shapes.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../Add-animation-effect-to-PowerPoint-shapes/Program.cs | 2 +- .../Add-animation-to-PowerPoint-text.csproj | 9 +++++++++ .../Add-animation-to-PowerPoint-text/Output/gitkeep.txt | 0 .../.NET/Add-animation-to-PowerPoint-text/Program.cs | 4 ++-- .../Add-exit-animation-effect.csproj | 6 ++++++ .../.NET/Add-exit-animation-effect/Output/gitkeep.txt | 0 .../.NET/Add-exit-animation-effect/Program.cs | 2 +- .../Add-interactive-animation.csproj | 6 ++++++ .../.NET/Add-interactive-animation/Output/gitkeep.txt | 0 .../.NET/Add-interactive-animation/Program.cs | 2 +- .../Create-custom-path-animation-effect.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../.NET/Create-custom-path-animation-effect/Program.cs | 2 +- .../Modify-animation-effect-sub-type.csproj | 9 +++++++++ .../Modify-animation-effect-sub-type/Output/gitkeep.txt | 0 .../.NET/Modify-animation-effect-sub-type/Program.cs | 4 ++-- .../Modify-animation-effect-timing.csproj | 9 +++++++++ .../Modify-animation-effect-timing/Output/gitkeep.txt | 0 .../.NET/Modify-animation-effect-timing/Program.cs | 4 ++-- .../Modify-existing-animation-effect.csproj | 9 +++++++++ .../Modify-existing-animation-effect/Output/gitkeep.txt | 0 .../.NET/Modify-existing-animation-effect/Program.cs | 4 ++-- .../.NET/Remove-animation-effect/Output/gitkeep.txt | 0 .../.NET/Remove-animation-effect/Program.cs | 4 ++-- .../Remove-animation-effect.csproj | 9 +++++++++ .../.NET/Reordering-animation-effects/Output/gitkeep.txt | 0 .../.NET/Reordering-animation-effects/Program.cs | 4 ++-- .../Reordering-animation-effects.csproj | 9 +++++++++ 30 files changed, 94 insertions(+), 16 deletions(-) create mode 100644 Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Output/gitkeep.txt create mode 100644 Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Output/gitkeep.txt create mode 100644 Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Output/gitkeep.txt create mode 100644 Animations/Add-interactive-animation/.NET/Add-interactive-animation/Output/gitkeep.txt create mode 100644 Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Output/gitkeep.txt create mode 100644 Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Output/gitkeep.txt create mode 100644 Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Output/gitkeep.txt create mode 100644 Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Output/gitkeep.txt create mode 100644 Animations/Remove-animation-effect/.NET/Remove-animation-effect/Output/gitkeep.txt create mode 100644 Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Output/gitkeep.txt diff --git a/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Add-animation-effect-to-PowerPoint-shapes.csproj b/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Add-animation-effect-to-PowerPoint-shapes.csproj index eb418b64..4840e8ae 100644 --- a/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Add-animation-effect-to-PowerPoint-shapes.csproj +++ b/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Add-animation-effect-to-PowerPoint-shapes.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Output/gitkeep.txt b/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Program.cs b/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Program.cs index e10dc514..23e314f0 100644 --- a/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Program.cs +++ b/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Program.cs @@ -10,5 +10,5 @@ ISequence sequence = slide.Timeline.MainSequence; //Add bounce effect to the shape. IEffect bounceEffect = sequence.AddEffect(cubeShape, EffectType.Bounce, EffectSubtype.None, EffectTriggerType.OnClick); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Add-animation-to-PowerPoint-text.csproj b/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Add-animation-to-PowerPoint-text.csproj index 86137ed4..01a59954 100644 --- a/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Add-animation-to-PowerPoint-text.csproj +++ b/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Add-animation-to-PowerPoint-text.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Output/gitkeep.txt b/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Program.cs b/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Program.cs index 024d40e6..07cf6ba7 100644 --- a/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Program.cs +++ b/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from Presentation. @@ -12,5 +12,5 @@ ISequence sequence = slide.Timeline.MainSequence; //Add swivel effect with vertical subtype to the shape, build type is used to represent the animate level of the paragraph. IEffect bounceEffect = sequence.AddEffect(shape, EffectType.Swivel, EffectSubtype.Vertical, EffectTriggerType.OnClick, BuildType.ByLevelParagraphs1); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Add-exit-animation-effect.csproj b/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Add-exit-animation-effect.csproj index 6a118ba3..438cb837 100644 --- a/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Add-exit-animation-effect.csproj +++ b/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Add-exit-animation-effect.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Output/gitkeep.txt b/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Program.cs b/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Program.cs index 2da67e20..29000937 100644 --- a/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Program.cs +++ b/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Program.cs @@ -12,5 +12,5 @@ IEffect effect = sequence.AddEffect(cubeShape, EffectType.RandomBars, EffectSubtype.None, EffectTriggerType.OnClick); //Change the preset class type of the effect from default entrance to exit. effect.PresetClassType = EffectPresetClassType.Exit; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Add-interactive-animation.csproj b/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Add-interactive-animation.csproj index e3d2bf45..46def146 100644 --- a/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Add-interactive-animation.csproj +++ b/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Add-interactive-animation.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Output/gitkeep.txt b/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Program.cs b/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Program.cs index 90444940..8c8908f9 100644 --- a/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Program.cs +++ b/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Program.cs @@ -12,5 +12,5 @@ ISequence interactiveSequence = slide.Timeline.InteractiveSequences.Add(buttonShape); //Add Fly effect with top subtype to animate the shape as fly from top. IEffect bounceEffect = interactiveSequence.AddEffect(cubeShape, EffectType.Fly, EffectSubtype.Top, EffectTriggerType.OnClick); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Create-custom-path-animation-effect.csproj b/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Create-custom-path-animation-effect.csproj index bc81ba93..c07b853f 100644 --- a/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Create-custom-path-animation-effect.csproj +++ b/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Create-custom-path-animation-effect.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Output/gitkeep.txt b/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Program.cs b/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Program.cs index dd3fad33..a9e8f65d 100644 --- a/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Program.cs +++ b/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Program.cs @@ -22,5 +22,5 @@ motionBehavior.Path.Add(MotionCommandPathType.LineTo, points, MotionPathPointsType.Auto, false); //Add the end command to finish the path animation. motionBehavior.Path.Add(MotionCommandPathType.End, null, MotionPathPointsType.Auto, false); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Modify-animation-effect-sub-type.csproj b/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Modify-animation-effect-sub-type.csproj index b18ae4ea..a68e34e5 100644 --- a/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Modify-animation-effect-sub-type.csproj +++ b/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Modify-animation-effect-sub-type.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Output/gitkeep.txt b/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Program.cs b/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Program.cs index 6777ed4f..aeadf804 100644 --- a/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Program.cs +++ b/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from Presentation. @@ -14,5 +14,5 @@ IEffect wheelEffect = sequence[0] as IEffect; //Change the wheel animation effect sub type from 2 spoke to 4 spoke. wheelEffect.Subtype = EffectSubtype.Wheel4; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Modify-animation-effect-timing.csproj b/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Modify-animation-effect-timing.csproj index 15e6fe3c..3eb5f4b6 100644 --- a/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Modify-animation-effect-timing.csproj +++ b/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Modify-animation-effect-timing.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Output/gitkeep.txt b/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Program.cs b/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Program.cs index 0d2bf55f..40c3ab1d 100644 --- a/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Program.cs +++ b/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieves the first slide from Presentation. @@ -14,5 +14,5 @@ IEffect pathEffect = sequence[0] as IEffect; //Increase the duration of the animation effect. pathEffect.Behaviors[0].Timing.Duration = 5; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Modify-existing-animation-effect.csproj b/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Modify-existing-animation-effect.csproj index 0344c65f..25255d68 100644 --- a/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Modify-existing-animation-effect.csproj +++ b/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Modify-existing-animation-effect.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Output/gitkeep.txt b/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Program.cs b/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Program.cs index 9d492235..e5933245 100644 --- a/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Program.cs +++ b/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from Presentation. @@ -16,5 +16,5 @@ IEffect animationEffect = animationEffects[0]; //Change the animation effect type from swivel to GrowAndTurn. animationEffect.Type = EffectType.GrowAndTurn; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Output/gitkeep.txt b/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Program.cs b/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Program.cs index a9b359cb..29b379cc 100644 --- a/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Program.cs +++ b/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Iterate the slide. @@ -18,5 +18,5 @@ { sequence.Remove(effect); } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Remove-animation-effect.csproj b/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Remove-animation-effect.csproj index c0f647cc..05bb13ff 100644 --- a/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Remove-animation-effect.csproj +++ b/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Remove-animation-effect.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Output/gitkeep.txt b/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Program.cs b/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Program.cs index 42fbbc5c..7ef08479 100644 --- a/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Program.cs +++ b/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Iterate the slide. @@ -18,5 +18,5 @@ sequence.Remove(effect); //Insert the removed animation effect as first. sequence.Insert(0, effect); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Reordering-animation-effects.csproj b/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Reordering-animation-effects.csproj index 829ced53..7b701fa2 100644 --- a/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Reordering-animation-effects.csproj +++ b/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Reordering-animation-effects.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + From 0c758166e17349492520739bfd62752d74b1d1a7 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Mon, 19 Aug 2024 18:43:36 +0530 Subject: [PATCH 02/19] Charts --- .../Apply-chart-3D-formats.csproj | 9 +++++++++ .../.NET/Apply-chart-3D-formats/Output/gitkeep.txt | 0 .../.NET/Apply-chart-3D-formats/Program.cs | 4 ++-- .../Change-text-for-data-label-in-chart.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../Change-text-for-data-label-in-chart/Program.cs | 2 +- .../Change-the-slice-color-of-pie-chart.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../Change-the-slice-color-of-pie-chart/Program.cs | 2 +- .../Convert-Chart-to-Image.csproj | 12 ++++++++++++ .../.NET/Convert-Chart-to-Image/Output/gitkeep.txt | 0 .../.NET/Convert-Chart-to-Image/Program.cs | 4 ++-- .../Create-Box-And-Whisker-chart.csproj | 6 ++++++ .../Create-Box-And-Whisker-chart/Output/gitkeep.txt | 0 .../.NET/Create-Box-And-Whisker-chart/Program.cs | 2 +- .../Create-Histogram-chart.csproj | 6 ++++++ .../.NET/Create-Histogram-chart/Output/gitkeep.txt | 0 .../.NET/Create-Histogram-chart/Program.cs | 2 +- .../Create-Pareto-chart/Create-Pareto-chart.csproj | 6 ++++++ .../.NET/Create-Pareto-chart/Output/gitkeep.txt | 0 .../.NET/Create-Pareto-chart/Program.cs | 2 +- .../Create-PowerPoint-chart.csproj | 6 ++++++ .../.NET/Create-PowerPoint-chart/Output/gitkeep.txt | 0 .../.NET/Create-PowerPoint-chart/Program.cs | 2 +- .../Create-Waterfall-chart.csproj | 6 ++++++ .../.NET/Create-Waterfall-chart/Output/gitkeep.txt | 0 .../.NET/Create-Waterfall-chart/Program.cs | 2 +- .../Create-chart-and-save-as-image.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../.NET/Create-chart-and-save-as-image/Program.cs | 2 +- .../Create-chart-from-excel-sheet.csproj | 9 +++++++++ .../Create-chart-from-excel-sheet/Output/gitkeep.txt | 0 .../.NET/Create-chart-from-excel-sheet/Program.cs | 4 ++-- .../Create-customized-chart.csproj | 6 ++++++ .../.NET/Create-customized-chart/Output/gitkeep.txt | 0 .../.NET/Create-customized-chart/Program.cs | 2 +- .../Create-funnel-chart/Create-funnel-chart.csproj | 6 ++++++ .../.NET/Create-funnel-chart/Output/gitkeep.txt | 0 .../.NET/Create-funnel-chart/Program.cs | 2 +- .../Create-scatter-chart/Create-scatter-chart.csproj | 6 ++++++ .../.NET/Create-scatter-chart/Output/gitkeep.txt | 0 .../.NET/Create-scatter-chart/Program.cs | 2 +- .../.NET/Edit-chart-data/Edit-chart-data.csproj | 9 +++++++++ .../.NET/Edit-chart-data/Output/gitkeep.txt | 0 .../Edit-chart-data/.NET/Edit-chart-data/Program.cs | 4 ++-- .../Format-Axis/.NET/Format-Axis/Format-Axis.csproj | 8 ++++++++ .../Format-Axis/.NET/Format-Axis/Output/gitkeep.txt | 0 Charts/Format-Axis/.NET/Format-Axis/Program.cs | 4 ++-- .../.NET/Format-Chart-Area/Format-Chart-Area.csproj | 9 +++++++++ .../.NET/Format-Chart-Area/Output/gitkeep.txt | 0 .../.NET/Format-Chart-Area/Program.cs | 4 ++-- .../Format-Data-Labels/Format-Data-Labels.csproj | 8 ++++++++ .../.NET/Format-Data-Labels/Output/gitkeep.txt | 0 .../.NET/Format-Data-Labels/Program.cs | 4 ++-- .../.NET/Format-Legend/Format-Legend.csproj | 8 ++++++++ .../.NET/Format-Legend/Output/gitkeep.txt | 0 Charts/Format-Legend/.NET/Format-Legend/Program.cs | 4 ++-- .../.NET/Format-Plot-Area/Format-Plot-Area.csproj | 9 +++++++++ .../.NET/Format-Plot-Area/Output/gitkeep.txt | 0 .../.NET/Format-Plot-Area/Program.cs | 4 ++-- .../.NET/Add-Drop-Lines/Add-Drop-Lines.csproj | 8 ++++++++ .../.NET/Add-Drop-Lines/Output/gitkeep.txt | 0 .../Add-Drop-Lines/.NET/Add-Drop-Lines/Program.cs | 4 ++-- .../Add-High-Low-Lines/Add-High-Low-Lines.csproj | 8 ++++++++ .../.NET/Add-High-Low-Lines/Output/gitkeep.txt | 0 .../.NET/Add-High-Low-Lines/Program.cs | 4 ++-- .../.NET/Add-Series-Lines/Add-Series-Lines.csproj | 8 ++++++++ .../.NET/Add-Series-Lines/Output/gitkeep.txt | 0 .../.NET/Add-Series-Lines/Program.cs | 4 ++-- .../.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj | 8 ++++++++ .../.NET/Chart-Bar-Spacing/Output/gitkeep.txt | 0 .../.NET/Chart-Bar-Spacing/Program.cs | 4 ++-- .../.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj | 8 ++++++++ .../.NET/Explode-Pie-Chart/Output/gitkeep.txt | 0 .../.NET/Explode-Pie-Chart/Program.cs | 4 ++-- .../.NET/Format-Series/Format-Series.csproj | 8 ++++++++ .../.NET/Format-Series/Output/gitkeep.txt | 0 .../Format-Series/.NET/Format-Series/Program.cs | 4 ++-- .../Format-Chart-Title/Format-Chart-Title.csproj | 9 +++++++++ .../.NET/Format-Chart-Title/Output/gitkeep.txt | 0 .../.NET/Format-Chart-Title/Program.cs | 4 ++-- .../Modify-chart-appearance.csproj | 9 +++++++++ .../.NET/Modify-chart-appearance/Output/gitkeep.txt | 0 .../.NET/Modify-chart-appearance/Program.cs | 4 ++-- .../Modify-chart-legend-and-plot-areas.csproj | 9 +++++++++ .../Output/gitkeep.txt | 0 .../Modify-chart-legend-and-plot-areas/Program.cs | 4 ++-- .../Positioning-chart-elements/Output/gitkeep.txt | 0 .../Positioning-chart-elements.csproj | 6 ++++++ .../.NET/Positioning-chart-elements/Program.cs | 2 +- .../.NET/Refresh-PowerPoint-chart/Output/gitkeep.txt | 0 .../.NET/Refresh-PowerPoint-chart/Program.cs | 4 ++-- .../Refresh-PowerPoint-chart.csproj | 9 +++++++++ .../.NET/Remove-existing-chart/Output/gitkeep.txt | 0 .../.NET/Remove-existing-chart/Program.cs | 4 ++-- .../Remove-existing-chart.csproj | 9 +++++++++ .../.NET/Remove-legend/Output/gitkeep.txt | 0 Charts/Remove-legend/.NET/Remove-legend/Program.cs | 2 +- .../.NET/Remove-legend/Remove-legend.csproj | 6 ++++++ .../.NET/Show-Leader-Lines/Output/gitkeep.txt | 0 .../.NET/Show-Leader-Lines/Program.cs | 4 ++-- .../.NET/Show-Leader-Lines/Show-Leader-Lines.csproj | 8 ++++++++ 102 files changed, 315 insertions(+), 55 deletions(-) create mode 100644 Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Output/gitkeep.txt create mode 100644 Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Output/gitkeep.txt create mode 100644 Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Output/gitkeep.txt create mode 100644 Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Output/gitkeep.txt create mode 100644 Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Output/gitkeep.txt create mode 100644 Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Output/gitkeep.txt create mode 100644 Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Output/gitkeep.txt create mode 100644 Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Output/gitkeep.txt create mode 100644 Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Output/gitkeep.txt create mode 100644 Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Output/gitkeep.txt create mode 100644 Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Output/gitkeep.txt create mode 100644 Charts/Create-customized-chart/.NET/Create-customized-chart/Output/gitkeep.txt create mode 100644 Charts/Create-funnel-chart/.NET/Create-funnel-chart/Output/gitkeep.txt create mode 100644 Charts/Create-scatter-chart/.NET/Create-scatter-chart/Output/gitkeep.txt create mode 100644 Charts/Edit-chart-data/.NET/Edit-chart-data/Output/gitkeep.txt create mode 100644 Charts/Format-Axis/.NET/Format-Axis/Output/gitkeep.txt create mode 100644 Charts/Format-Chart-Area/.NET/Format-Chart-Area/Output/gitkeep.txt create mode 100644 Charts/Format-Data-Labels/.NET/Format-Data-Labels/Output/gitkeep.txt create mode 100644 Charts/Format-Legend/.NET/Format-Legend/Output/gitkeep.txt create mode 100644 Charts/Format-Plot-Area/.NET/Format-Plot-Area/Output/gitkeep.txt create mode 100644 Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Output/gitkeep.txt create mode 100644 Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Output/gitkeep.txt create mode 100644 Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Output/gitkeep.txt create mode 100644 Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Output/gitkeep.txt create mode 100644 Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Output/gitkeep.txt create mode 100644 Charts/Format-Series/Format-Series/.NET/Format-Series/Output/gitkeep.txt create mode 100644 Charts/Format_Chart_Title/.NET/Format-Chart-Title/Output/gitkeep.txt create mode 100644 Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Output/gitkeep.txt create mode 100644 Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Output/gitkeep.txt create mode 100644 Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Output/gitkeep.txt create mode 100644 Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Output/gitkeep.txt create mode 100644 Charts/Remove-existing-chart/.NET/Remove-existing-chart/Output/gitkeep.txt create mode 100644 Charts/Remove-legend/.NET/Remove-legend/Output/gitkeep.txt create mode 100644 Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Output/gitkeep.txt diff --git a/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj b/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj index 6700eb8d..fd65e8da 100644 --- a/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj +++ b/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Output/gitkeep.txt b/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Program.cs b/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Program.cs index 8f0de114..c17a9101 100644 --- a/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Program.cs +++ b/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Program.cs @@ -2,7 +2,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Gets the first slide @@ -23,5 +23,5 @@ chart.RightAngleAxes = true; //Set the auto scaling of chart chart.AutoScaling = true; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Change-text-for-data-label-in-chart.csproj b/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Change-text-for-data-label-in-chart.csproj index 235c0a85..84734f77 100644 --- a/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Change-text-for-data-label-in-chart.csproj +++ b/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Change-text-for-data-label-in-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Output/gitkeep.txt b/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Program.cs b/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Program.cs index 118fd21a..e48ac69a 100644 --- a/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Program.cs +++ b/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Program.cs @@ -15,7 +15,7 @@ static void Main(string[] args) //Add pie chart CreatePieChart(slide); //Save the output PowerPoint Presentation - using FileStream outputStream = new(Path.GetFullPath("Output.pptx"), FileMode.Create, FileAccess.ReadWrite); + using FileStream outputStream = new(Path.GetFullPath("Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); } /// diff --git a/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Change-the-slice-color-of-pie-chart.csproj b/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Change-the-slice-color-of-pie-chart.csproj index ffd1fb80..1ca38944 100644 --- a/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Change-the-slice-color-of-pie-chart.csproj +++ b/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Change-the-slice-color-of-pie-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Output/gitkeep.txt b/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Program.cs b/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Program.cs index bcd96deb..1c0a131c 100644 --- a/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Program.cs +++ b/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Program.cs @@ -16,7 +16,7 @@ static void Main(string[] args) //Add pie chart CreatePieChart(slide); //Save the output PowerPoint Presentation - using FileStream outputStream = new(Path.GetFullPath("Output.pptx"), FileMode.Create, FileAccess.ReadWrite); + using FileStream outputStream = new(Path.GetFullPath("Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); } /// diff --git a/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj b/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj index 3d263e1f..4c4101d6 100644 --- a/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj +++ b/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj @@ -10,4 +10,16 @@ + + + Always + + + Always + + + Always + + + diff --git a/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Output/gitkeep.txt b/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Program.cs b/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Program.cs index 89a5f64a..dad5f667 100644 --- a/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Program.cs +++ b/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Program.cs @@ -9,14 +9,14 @@ internal class Program static void Main(string[] args) { //Loads or open an PowerPoint Presentation - FileStream inputStream = new FileStream("../../../Data/Sample.pptx", FileMode.Open); + FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/Sample.pptx"), FileMode.Open); IPresentation pptxDoc = Presentation.Open(inputStream); //Initialize the PresentationRenderer pptxDoc.PresentationRenderer = new PresentationRenderer(); //Gets the first instance of chart from slide IPresentationChart chart = pptxDoc.Slides[0].Charts[0]; // Converts the chart to image. - Stream image = new FileStream("../../../Data/ChartToImage.jpg", FileMode.Create, FileAccess.ReadWrite); + Stream image = new FileStream(Path.GetFullPath(@"Output/Output.jpg"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.PresentationRenderer.ConvertToImage(chart, image); //Closes the presentation pptxDoc.Close(); diff --git a/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Create-Box-And-Whisker-chart.csproj b/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Create-Box-And-Whisker-chart.csproj index 1d9260a6..a2a7fc5e 100644 --- a/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Create-Box-And-Whisker-chart.csproj +++ b/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Create-Box-And-Whisker-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Output/gitkeep.txt b/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Program.cs b/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Program.cs index 54dc040c..c11d6ae6 100644 --- a/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Program.cs +++ b/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Program.cs @@ -37,7 +37,7 @@ seriesC.SerieFormat.ShowMeanLine = false; seriesC.SerieFormat.QuartileCalculationType = QuartileCalculation.ExclusiveMedian; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); /// diff --git a/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Create-Histogram-chart.csproj b/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Create-Histogram-chart.csproj index e253beb1..b5bb9e66 100644 --- a/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Create-Histogram-chart.csproj +++ b/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Create-Histogram-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Output/gitkeep.txt b/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Program.cs b/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Program.cs index 44c5ad25..120726bd 100644 --- a/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Program.cs +++ b/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Program.cs @@ -35,5 +35,5 @@ chart.PrimaryCategoryAxis.Title = "Height"; //Hiding the legend. chart.HasLegend = false; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Create-Pareto-chart.csproj b/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Create-Pareto-chart.csproj index bc148cb6..6054c253 100644 --- a/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Create-Pareto-chart.csproj +++ b/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Create-Pareto-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Output/gitkeep.txt b/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Program.cs b/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Program.cs index c6d13686..da55fd62 100644 --- a/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Program.cs +++ b/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Program.cs @@ -36,5 +36,5 @@ chart.ChartTitle = "Expenses"; //Hiding the legend. chart.HasLegend = false; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj b/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj index 8318a0ec..62460179 100644 --- a/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj +++ b/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Output/gitkeep.txt b/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Program.cs b/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Program.cs index 53608dc2..5f493ba5 100644 --- a/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Program.cs +++ b/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Program.cs @@ -49,5 +49,5 @@ chart.PrimaryCategoryAxis.CategoryLabels = chart.ChartData[2, 1, 4, 1]; //Specify the chart type. chart.ChartType = OfficeChartType.Column_Clustered; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj b/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj index a9f5dd2b..ffac529d 100644 --- a/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj +++ b/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Output/gitkeep.txt b/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Program.cs b/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Program.cs index 74ac2cb5..72af11b9 100644 --- a/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Program.cs +++ b/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Program.cs @@ -40,5 +40,5 @@ chart.Series[0].DataPoints.DefaultDataPoint.DataLabels.IsValue = true; chart.Series[0].DataPoints.DefaultDataPoint.DataLabels.Size = 8; chart.Legend.Position = OfficeLegendPosition.Right; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Create-chart-and-save-as-image.csproj b/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Create-chart-and-save-as-image.csproj index f90131a3..611c0d94 100644 --- a/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Create-chart-and-save-as-image.csproj +++ b/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Create-chart-and-save-as-image.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Output/gitkeep.txt b/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Program.cs b/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Program.cs index 8aac22ea..e825277c 100644 --- a/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Program.cs +++ b/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Program.cs @@ -12,7 +12,7 @@ //Initialize the PresentationRenderer pptxDoc.PresentationRenderer = new PresentationRenderer(); // Converts the chart to image. -Stream image = new FileStream("../../../ChartToImage.jpg", FileMode.Create, FileAccess.ReadWrite); +Stream image = new FileStream(Path.GetFullPath(@"Output/Output.jpg"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.PresentationRenderer.ConvertToImage(pieChart, image); //Closes the presentation pptxDoc.Close(); diff --git a/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Create-chart-from-excel-sheet.csproj b/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Create-chart-from-excel-sheet.csproj index be9c9133..498ef871 100644 --- a/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Create-chart-from-excel-sheet.csproj +++ b/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Create-chart-from-excel-sheet.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Output/gitkeep.txt b/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Program.cs b/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Program.cs index fea1692f..5a5b609d 100644 --- a/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Program.cs +++ b/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Program.cs @@ -6,8 +6,8 @@ //Add a blank slide to Presentation. ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank); //Get the excel file as stream. -using FileStream excelStream = new(@"../../../Data/Book1.xlsx", FileMode.Open); +using FileStream excelStream = new(Path.GetFullPath(@"Data/Book1.xlsx"), FileMode.Open); //Add a chart to the slide with a data range from excel worksheet – excel workbook, worksheet number, Data range, position, and size. IPresentationChart chart = slide.Charts.AddChart(excelStream, 1, "A1:D4", new RectangleF(100, 10, 700, 500)); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Create-customized-chart/.NET/Create-customized-chart/Create-customized-chart.csproj b/Charts/Create-customized-chart/.NET/Create-customized-chart/Create-customized-chart.csproj index e3b4951d..5804046d 100644 --- a/Charts/Create-customized-chart/.NET/Create-customized-chart/Create-customized-chart.csproj +++ b/Charts/Create-customized-chart/.NET/Create-customized-chart/Create-customized-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-customized-chart/.NET/Create-customized-chart/Output/gitkeep.txt b/Charts/Create-customized-chart/.NET/Create-customized-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-customized-chart/.NET/Create-customized-chart/Program.cs b/Charts/Create-customized-chart/.NET/Create-customized-chart/Program.cs index 186f5dae..b634ba8f 100644 --- a/Charts/Create-customized-chart/.NET/Create-customized-chart/Program.cs +++ b/Charts/Create-customized-chart/.NET/Create-customized-chart/Program.cs @@ -51,5 +51,5 @@ IOfficeChartSerie serie2014 = chart.Series.Add("2014"); serie2014.Values = chart.ChartData[2, 3, 7, 3]; serie2014.SerieType = OfficeChartType.Scatter_Line_Markers; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Create-funnel-chart.csproj b/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Create-funnel-chart.csproj index 0c428e46..cf7a6c50 100644 --- a/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Create-funnel-chart.csproj +++ b/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Create-funnel-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Output/gitkeep.txt b/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Program.cs b/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Program.cs index a12603a2..69419314 100644 --- a/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Program.cs +++ b/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Program.cs @@ -32,5 +32,5 @@ IOfficeChartSerie serie = chart.Series[0]; chart.Series[0].DataPoints.DefaultDataPoint.DataLabels.IsValue = true; chart.Series[0].DataPoints.DefaultDataPoint.DataLabels.Size = 8; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Create-scatter-chart.csproj b/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Create-scatter-chart.csproj index 113bec0f..62d7df17 100644 --- a/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Create-scatter-chart.csproj +++ b/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Create-scatter-chart.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Output/gitkeep.txt b/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Program.cs b/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Program.cs index b3817632..fa173e13 100644 --- a/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Program.cs +++ b/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Program.cs @@ -32,5 +32,5 @@ IOfficeChartSerie serie = chart.Series[0]; serie.DataPoints.DefaultDataPoint.DataLabels.IsValue = true; serie.DataPoints.DefaultDataPoint.DataLabels.IsCategoryName = true; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj b/Charts/Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj index eb9a9c79..ff19f96e 100644 --- a/Charts/Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj +++ b/Charts/Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Edit-chart-data/.NET/Edit-chart-data/Output/gitkeep.txt b/Charts/Edit-chart-data/.NET/Edit-chart-data/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Edit-chart-data/.NET/Edit-chart-data/Program.cs b/Charts/Edit-chart-data/.NET/Edit-chart-data/Program.cs index e52662e7..19ea790f 100644 --- a/Charts/Edit-chart-data/.NET/Edit-chart-data/Program.cs +++ b/Charts/Edit-chart-data/.NET/Edit-chart-data/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide. @@ -21,5 +21,5 @@ chart.ChartData.SetValue(2, 4, 80); //Refresh the chart. chart.Refresh(); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj b/Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj index ca04ad08..79e38c65 100644 --- a/Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj +++ b/Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj @@ -10,4 +10,12 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Axis/.NET/Format-Axis/Output/gitkeep.txt b/Charts/Format-Axis/.NET/Format-Axis/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Axis/.NET/Format-Axis/Program.cs b/Charts/Format-Axis/.NET/Format-Axis/Program.cs index f132d419..e5f7de7f 100644 --- a/Charts/Format-Axis/.NET/Format-Axis/Program.cs +++ b/Charts/Format-Axis/.NET/Format-Axis/Program.cs @@ -9,7 +9,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -74,7 +74,7 @@ static void Main(string[] args) //Showing minor gridlines. chart.PrimaryValueAxis.HasMinorGridLines = false; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Format-Chart-Area.csproj b/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Format-Chart-Area.csproj index 69d970d9..5e5c5b57 100644 --- a/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Format-Chart-Area.csproj +++ b/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Format-Chart-Area.csproj @@ -11,4 +11,13 @@ + + + + Always + + + Always + + diff --git a/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Output/gitkeep.txt b/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Program.cs b/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Program.cs index a3516d5c..9d8563f1 100644 --- a/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Program.cs +++ b/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Program.cs @@ -10,7 +10,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -34,7 +34,7 @@ static void Main(string[] args) chartArea.Fill.BackColor = Syncfusion.Drawing.Color.FromArgb(205, 217, 234); chartArea.Fill.ForeColor = Syncfusion.Drawing.Color.White; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Format-Data-Labels.csproj b/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Format-Data-Labels.csproj index 60cb7d53..ba617f91 100644 --- a/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Format-Data-Labels.csproj +++ b/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Format-Data-Labels.csproj @@ -10,4 +10,12 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Output/gitkeep.txt b/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Program.cs b/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Program.cs index 47f3bfef..09da529b 100644 --- a/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Program.cs +++ b/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Program.cs @@ -8,7 +8,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -33,7 +33,7 @@ static void Main(string[] args) chart.Series[i].DataPoints.DefaultDataPoint.DataLabels.Position = OfficeDataLabelPosition.Center; } - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj b/Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj index fd8db35e..56328cc8 100644 --- a/Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj +++ b/Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj @@ -10,4 +10,12 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Legend/.NET/Format-Legend/Output/gitkeep.txt b/Charts/Format-Legend/.NET/Format-Legend/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Legend/.NET/Format-Legend/Program.cs b/Charts/Format-Legend/.NET/Format-Legend/Program.cs index 759d761a..22888839 100644 --- a/Charts/Format-Legend/.NET/Format-Legend/Program.cs +++ b/Charts/Format-Legend/.NET/Format-Legend/Program.cs @@ -10,7 +10,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -56,7 +56,7 @@ static void Main(string[] args) //Legend without overlapping the chart. chart.Legend.IncludeInLayout = true; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Format-Plot-Area.csproj b/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Format-Plot-Area.csproj index 6b553b5f..65d6bd4c 100644 --- a/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Format-Plot-Area.csproj +++ b/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Format-Plot-Area.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Output/gitkeep.txt b/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Program.cs b/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Program.cs index f9116e5d..86fb4518 100644 --- a/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Program.cs +++ b/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Program.cs @@ -7,7 +7,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) { @@ -30,7 +30,7 @@ static void Main(string[] args) chartPlotArea.Fill.BackColor = Syncfusion.Drawing.Color.FromArgb(205, 217, 234); chartPlotArea.Fill.ForeColor = Syncfusion.Drawing.Color.White; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj b/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj index 6fcd5b69..e067f005 100644 --- a/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj +++ b/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj @@ -10,4 +10,12 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Output/gitkeep.txt b/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Program.cs b/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Program.cs index 2c0afe3a..60f4c50a 100644 --- a/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Program.cs +++ b/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Program.cs @@ -10,7 +10,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -28,7 +28,7 @@ static void Main(string[] args) chart.Series[0].SerieFormat.CommonSerieOptions.DropLines.LinePattern = OfficeChartLinePattern.Dot; chart.Series[0].SerieFormat.CommonSerieOptions.DropLines.LineWeight = OfficeChartLineWeight.Hairline; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj b/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj index 6f5dd4a5..09f7127d 100644 --- a/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj +++ b/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj @@ -10,4 +10,12 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Output/gitkeep.txt b/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Program.cs b/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Program.cs index 79dca914..20fe0778 100644 --- a/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Program.cs +++ b/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Program.cs @@ -8,7 +8,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -26,7 +26,7 @@ static void Main(string[] args) chart.Series[0].SerieFormat.CommonSerieOptions.HighLowLines.LinePattern = OfficeChartLinePattern.Dot; chart.Series[0].SerieFormat.CommonSerieOptions.HighLowLines.LineWeight = OfficeChartLineWeight.Hairline; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Add-Series-Lines.csproj b/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Add-Series-Lines.csproj index 3de556eb..0fe0c97c 100644 --- a/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Add-Series-Lines.csproj +++ b/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Add-Series-Lines.csproj @@ -10,4 +10,12 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Output/gitkeep.txt b/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Program.cs b/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Program.cs index 8533360c..e6e874c6 100644 --- a/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Program.cs +++ b/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Program.cs @@ -8,7 +8,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -28,7 +28,7 @@ static void Main(string[] args) chart.Series[0].SerieFormat.CommonSerieOptions.PieSeriesLine.LinePattern = OfficeChartLinePattern.Solid; chart.Series[0].SerieFormat.CommonSerieOptions.PieSeriesLine.LineWeight = OfficeChartLineWeight.Medium; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj b/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj index 27be2360..3c363840 100644 --- a/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj +++ b/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj @@ -10,4 +10,12 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Output/gitkeep.txt b/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Program.cs b/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Program.cs index 19144504..010edf44 100644 --- a/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Program.cs +++ b/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Program.cs @@ -9,7 +9,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -25,7 +25,7 @@ static void Main(string[] args) //Adding space between bars of different categories. chart.Series[0].SerieFormat.CommonSerieOptions.GapWidth = 100; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj b/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj index 7e778d74..ad3d87c4 100644 --- a/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj +++ b/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj @@ -10,5 +10,13 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Output/gitkeep.txt b/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Program.cs b/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Program.cs index d5f6ca1a..36381465 100644 --- a/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Program.cs +++ b/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Program.cs @@ -7,7 +7,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -23,7 +23,7 @@ static void Main(string[] args) //Sets position of legend. chart.Legend.Position = OfficeLegendPosition.Bottom; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format-Series/Format-Series/.NET/Format-Series/Format-Series.csproj b/Charts/Format-Series/Format-Series/.NET/Format-Series/Format-Series.csproj index 291f7534..91dce6e7 100644 --- a/Charts/Format-Series/Format-Series/.NET/Format-Series/Format-Series.csproj +++ b/Charts/Format-Series/Format-Series/.NET/Format-Series/Format-Series.csproj @@ -10,5 +10,13 @@ + + + Always + + + Always + + diff --git a/Charts/Format-Series/Format-Series/.NET/Format-Series/Output/gitkeep.txt b/Charts/Format-Series/Format-Series/.NET/Format-Series/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format-Series/Format-Series/.NET/Format-Series/Program.cs b/Charts/Format-Series/Format-Series/.NET/Format-Series/Program.cs index 99f6730f..619d1df3 100644 --- a/Charts/Format-Series/Format-Series/.NET/Format-Series/Program.cs +++ b/Charts/Format-Series/Format-Series/.NET/Format-Series/Program.cs @@ -9,7 +9,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -45,7 +45,7 @@ static void Main(string[] args) //Sets position of legend. chart.Legend.Position = OfficeLegendPosition.Bottom; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Format-Chart-Title.csproj b/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Format-Chart-Title.csproj index b841adc8..763d7db6 100644 --- a/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Format-Chart-Title.csproj +++ b/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Format-Chart-Title.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Output/gitkeep.txt b/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Program.cs b/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Program.cs index b9bdad8f..e0b07cfb 100644 --- a/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Program.cs +++ b/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Program.cs @@ -8,7 +8,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -34,7 +34,7 @@ static void Main(string[] args) chart.HasLegend = true; chart.Legend.Position = OfficeLegendPosition.Right; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Modify-chart-appearance.csproj b/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Modify-chart-appearance.csproj index b59af937..05559bf5 100644 --- a/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Modify-chart-appearance.csproj +++ b/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Modify-chart-appearance.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Output/gitkeep.txt b/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Program.cs b/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Program.cs index cdba6231..dabe4e4e 100644 --- a/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Program.cs +++ b/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Program.cs @@ -3,7 +3,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide. @@ -57,5 +57,5 @@ //Set two colors. chartPlotArea.Fill.BackColor = Color.FromArgb(205, 217, 234); chartPlotArea.Fill.ForeColor = Color.White; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Modify-chart-legend-and-plot-areas.csproj b/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Modify-chart-legend-and-plot-areas.csproj index 1c80043e..fb8e5ede 100644 --- a/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Modify-chart-legend-and-plot-areas.csproj +++ b/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Modify-chart-legend-and-plot-areas.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Output/gitkeep.txt b/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Program.cs b/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Program.cs index c2873282..8b1a15c0 100644 --- a/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Program.cs +++ b/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Program.cs @@ -3,7 +3,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the chart from the first slide. @@ -70,5 +70,5 @@ chart.Legend.Layout.Width = 200; //Modify the legend layout width mode. chart.Legend.Layout.WidthMode = LayoutModes.factor; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Output/gitkeep.txt b/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Positioning-chart-elements.csproj b/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Positioning-chart-elements.csproj index 1ea5757d..dd33d4f1 100644 --- a/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Positioning-chart-elements.csproj +++ b/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Positioning-chart-elements.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Program.cs b/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Program.cs index acff303d..2f85b489 100644 --- a/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Program.cs +++ b/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Program.cs @@ -40,5 +40,5 @@ //Manually positions chart legend. chart.Legend.Layout.LeftMode = LayoutModes.factor; chart.Legend.Layout.TopMode = LayoutModes.factor; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Output/gitkeep.txt b/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Program.cs b/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Program.cs index d7d25e9f..4fc5742f 100644 --- a/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Program.cs +++ b/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide. @@ -11,5 +11,5 @@ // Refreshes the chart data. Set `true` to evaluate Excel formulas before refreshing, // or `false` to refresh only the data without evaluating formulas. chart.Refresh(false); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj b/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj index 55ba631c..8df533a6 100644 --- a/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj +++ b/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Output/gitkeep.txt b/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Program.cs b/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Program.cs index 20bd2b0a..57326800 100644 --- a/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Program.cs +++ b/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide. @@ -10,5 +10,5 @@ IPresentationChart chart = slide.Shapes[0] as IPresentationChart; //Remove the chart from slide. slide.Shapes.Remove(chart as IShape); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Remove-existing-chart.csproj b/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Remove-existing-chart.csproj index d0a638e4..98a7dd95 100644 --- a/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Remove-existing-chart.csproj +++ b/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Remove-existing-chart.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Charts/Remove-legend/.NET/Remove-legend/Output/gitkeep.txt b/Charts/Remove-legend/.NET/Remove-legend/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Remove-legend/.NET/Remove-legend/Program.cs b/Charts/Remove-legend/.NET/Remove-legend/Program.cs index f4adec60..8620b314 100644 --- a/Charts/Remove-legend/.NET/Remove-legend/Program.cs +++ b/Charts/Remove-legend/.NET/Remove-legend/Program.cs @@ -15,7 +15,7 @@ static void Main(string[] args) //Add pie chart CreatePieChart(slide); //Save the output PowerPoint Presentation - using FileStream outputStream = new(Path.GetFullPath("Output.pptx"), FileMode.Create, FileAccess.ReadWrite); + using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); } /// diff --git a/Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj b/Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj index 5a5eda39..cbde4b85 100644 --- a/Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj +++ b/Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Output/gitkeep.txt b/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Program.cs b/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Program.cs index 972280da..7441716e 100644 --- a/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Program.cs +++ b/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Program.cs @@ -8,7 +8,7 @@ class Program { static void Main(string[] args) { - FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint Presentation. using (IPresentation pptxDoc = Presentation.Open(fileStreamPath)) @@ -21,7 +21,7 @@ static void Main(string[] args) //Show leader lines enabled chart.Series[0].DataPoints.DefaultDataPoint.DataLabels.ShowLeaderLines = true; - using (FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) + using (FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { //Save the PowerPoint Presentation. pptxDoc.Save(outputStream); diff --git a/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Show-Leader-Lines.csproj b/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Show-Leader-Lines.csproj index bfd7018d..9b80ae39 100644 --- a/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Show-Leader-Lines.csproj +++ b/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Show-Leader-Lines.csproj @@ -10,4 +10,12 @@ + + + Always + + + Always + + From 68abb83ec9a7c40d47d1a82d9ca4fbec659d24e7 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Tue, 20 Aug 2024 10:16:12 +0530 Subject: [PATCH 03/19] Comments --- .../Add-reply-comment-in-PowerPoint.csproj | 9 +++++++++ .../Add-reply-comment-in-PowerPoint/Output/gitkeep.txt | 0 .../.NET/Add-reply-comment-in-PowerPoint/Program.cs | 4 ++-- .../Delete-comment-by-position.csproj | 9 +++++++++ .../.NET/Delete-comment-by-position/Output/gitkeep.txt | 0 .../.NET/Delete-comment-by-position/Program.cs | 4 ++-- .../.NET/Delete-comment/Delete-comment.csproj | 9 +++++++++ .../.NET/Delete-comment/Output/gitkeep.txt | 0 Comments/Delete-comment/.NET/Delete-comment/Program.cs | 4 ++-- .../Modify-comment-author/Modify-comment-author.csproj | 9 +++++++++ .../.NET/Modify-comment-author/Output/gitkeep.txt | 0 .../.NET/Modify-comment-author/Program.cs | 4 ++-- .../Modify-comment-content/Modify-comment-content.csproj | 9 +++++++++ .../.NET/Modify-comment-content/Output/gitkeep.txt | 0 .../.NET/Modify-comment-content/Program.cs | 4 ++-- 15 files changed, 55 insertions(+), 10 deletions(-) create mode 100644 Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Output/gitkeep.txt create mode 100644 Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Output/gitkeep.txt create mode 100644 Comments/Delete-comment/.NET/Delete-comment/Output/gitkeep.txt create mode 100644 Comments/Modify-comment-author/.NET/Modify-comment-author/Output/gitkeep.txt create mode 100644 Comments/Modify-comment-content/.NET/Modify-comment-content/Output/gitkeep.txt diff --git a/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Add-reply-comment-in-PowerPoint.csproj b/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Add-reply-comment-in-PowerPoint.csproj index baca943e..204955b7 100644 --- a/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Add-reply-comment-in-PowerPoint.csproj +++ b/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Add-reply-comment-in-PowerPoint.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Output/gitkeep.txt b/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Program.cs b/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Program.cs index d1e9da3f..bab7af35 100644 --- a/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Program.cs +++ b/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the slide from the Presentation. @@ -11,5 +11,5 @@ //Add reply to the comment. slide.Comments.Add("Author2", "A2", "Yes, we can we change the font size to 20", DateTime.Now, comment); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Delete-comment-by-position.csproj b/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Delete-comment-by-position.csproj index 40b882af..2f02bb2a 100644 --- a/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Delete-comment-by-position.csproj +++ b/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Delete-comment-by-position.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Output/gitkeep.txt b/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Program.cs b/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Program.cs index 103f2f00..28d58054 100644 --- a/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Program.cs +++ b/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide from the Presentation. @@ -9,5 +9,5 @@ //Remove the first reply comment from the slide. slide.Comments.RemoveAt(1); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Comments/Delete-comment/.NET/Delete-comment/Delete-comment.csproj b/Comments/Delete-comment/.NET/Delete-comment/Delete-comment.csproj index 3fcdb9f6..f387efe7 100644 --- a/Comments/Delete-comment/.NET/Delete-comment/Delete-comment.csproj +++ b/Comments/Delete-comment/.NET/Delete-comment/Delete-comment.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Comments/Delete-comment/.NET/Delete-comment/Output/gitkeep.txt b/Comments/Delete-comment/.NET/Delete-comment/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Comments/Delete-comment/.NET/Delete-comment/Program.cs b/Comments/Delete-comment/.NET/Delete-comment/Program.cs index c4a26683..d8c8a52b 100644 --- a/Comments/Delete-comment/.NET/Delete-comment/Program.cs +++ b/Comments/Delete-comment/.NET/Delete-comment/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide from the Presentation. @@ -11,5 +11,5 @@ //Remove the comment from the slide. slide.Comments.Remove(comment); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Comments/Modify-comment-author/.NET/Modify-comment-author/Modify-comment-author.csproj b/Comments/Modify-comment-author/.NET/Modify-comment-author/Modify-comment-author.csproj index 099fb7c6..2a7d3f77 100644 --- a/Comments/Modify-comment-author/.NET/Modify-comment-author/Modify-comment-author.csproj +++ b/Comments/Modify-comment-author/.NET/Modify-comment-author/Modify-comment-author.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Comments/Modify-comment-author/.NET/Modify-comment-author/Output/gitkeep.txt b/Comments/Modify-comment-author/.NET/Modify-comment-author/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Comments/Modify-comment-author/.NET/Modify-comment-author/Program.cs b/Comments/Modify-comment-author/.NET/Modify-comment-author/Program.cs index 8a9c6aa2..882e2a24 100644 --- a/Comments/Modify-comment-author/.NET/Modify-comment-author/Program.cs +++ b/Comments/Modify-comment-author/.NET/Modify-comment-author/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Open a slide to the Presentation. @@ -11,5 +11,5 @@ //Modify the comment text. comment.AuthorName = "NewAuthor"; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Comments/Modify-comment-content/.NET/Modify-comment-content/Modify-comment-content.csproj b/Comments/Modify-comment-content/.NET/Modify-comment-content/Modify-comment-content.csproj index 041e39d1..a7602a3d 100644 --- a/Comments/Modify-comment-content/.NET/Modify-comment-content/Modify-comment-content.csproj +++ b/Comments/Modify-comment-content/.NET/Modify-comment-content/Modify-comment-content.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Comments/Modify-comment-content/.NET/Modify-comment-content/Output/gitkeep.txt b/Comments/Modify-comment-content/.NET/Modify-comment-content/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Comments/Modify-comment-content/.NET/Modify-comment-content/Program.cs b/Comments/Modify-comment-content/.NET/Modify-comment-content/Program.cs index 4176891e..8ae7a16a 100644 --- a/Comments/Modify-comment-content/.NET/Modify-comment-content/Program.cs +++ b/Comments/Modify-comment-content/.NET/Modify-comment-content/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Open a slide to the Presentation. @@ -11,5 +11,5 @@ //Modify the comment text. comment.Text = "The comment text content is changed"; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file From 2ba11eec6da2b4f2b6edf0abd47ea377f7f445df Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Tue, 20 Aug 2024 11:10:23 +0530 Subject: [PATCH 04/19] Connectors --- .../Add-PowerPoint-connectors.csproj | 6 ++++++ .../.NET/Add-PowerPoint-connectors/Output/gitkeep.txt | 0 .../.NET/Add-PowerPoint-connectors/Program.cs | 2 +- .../Add-single-point-connector.csproj | 6 ++++++ .../.NET/Add-single-point-connector/Output/gitkeep.txt | 0 .../.NET/Add-single-point-connector/Program.cs | 2 +- .../Modify-existing-connector.csproj | 9 +++++++++ .../.NET/Modify-existing-connector/Output/gitkeep.txt | 0 .../.NET/Modify-existing-connector/Program.cs | 4 ++-- .../.NET/Remove-connector-from-shapes/Output/gitkeep.txt | 0 .../.NET/Remove-connector-from-shapes/Program.cs | 4 ++-- .../Remove-connector-from-shapes.csproj | 9 +++++++++ .../.NET/Update-connector-position/Output/gitkeep.txt | 0 .../.NET/Update-connector-position/Program.cs | 4 ++-- .../Update-connector-position.csproj | 9 +++++++++ 15 files changed, 47 insertions(+), 8 deletions(-) create mode 100644 Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Output/gitkeep.txt create mode 100644 Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Output/gitkeep.txt create mode 100644 Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Output/gitkeep.txt create mode 100644 Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Output/gitkeep.txt create mode 100644 Connectors/Update-connector-position/.NET/Update-connector-position/Output/gitkeep.txt diff --git a/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj b/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj index b085e044..e50a0356 100644 --- a/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj +++ b/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Output/gitkeep.txt b/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Program.cs b/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Program.cs index 3de04c6d..be0ec945 100644 --- a/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Program.cs +++ b/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Program.cs @@ -11,5 +11,5 @@ //Add elbow connector on the slide and connect the end points of connector with specified port positions 0 and 4 of the beginning and end shapes. IConnector connector = slide.Shapes.AddConnector(ConnectorType.Elbow, rectangle, 0, oval, 4); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Add-single-point-connector.csproj b/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Add-single-point-connector.csproj index b902a8d8..de58735f 100644 --- a/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Add-single-point-connector.csproj +++ b/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Add-single-point-connector.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Output/gitkeep.txt b/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Program.cs b/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Program.cs index 04b3c2b4..b46c569b 100644 --- a/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Program.cs +++ b/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Program.cs @@ -18,5 +18,5 @@ //Set the connector solid fill as black. connector.LineFormat.Fill.SolidFill.Color = ColorObject.Black; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Modify-existing-connector.csproj b/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Modify-existing-connector.csproj index 64ef64fb..1cb4bb0f 100644 --- a/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Modify-existing-connector.csproj +++ b/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Modify-existing-connector.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Output/gitkeep.txt b/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Program.cs b/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Program.cs index 1423a078..c7ad9a09 100644 --- a/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Program.cs +++ b/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide of a PowerPoint file. @@ -22,5 +22,5 @@ //Reconnect the end point of connector with triangle shape if its connection site count is greater than 4. if (connectionSiteIndex < triangle.ConnectionSiteCount) connector.EndConnect(triangle, connectionSiteIndex); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Output/gitkeep.txt b/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Program.cs b/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Program.cs index 0e04c797..a5d128ff 100644 --- a/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Program.cs +++ b/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide of a PowerPoint file. @@ -10,5 +10,5 @@ IConnector connector = slide.Shapes[2] as IConnector; //Remove the connector from slide. slide.Shapes.Remove(connector); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Remove-connector-from-shapes.csproj b/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Remove-connector-from-shapes.csproj index 86624890..51f6b01b 100644 --- a/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Remove-connector-from-shapes.csproj +++ b/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Remove-connector-from-shapes.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Connectors/Update-connector-position/.NET/Update-connector-position/Output/gitkeep.txt b/Connectors/Update-connector-position/.NET/Update-connector-position/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Connectors/Update-connector-position/.NET/Update-connector-position/Program.cs b/Connectors/Update-connector-position/.NET/Update-connector-position/Program.cs index 182666ba..cdac97ac 100644 --- a/Connectors/Update-connector-position/.NET/Update-connector-position/Program.cs +++ b/Connectors/Update-connector-position/.NET/Update-connector-position/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide of a PowerPoint file. @@ -15,5 +15,5 @@ rectangle.Top = 200; //Update the connector to connect with previously updated shape. connector.Update(); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Connectors/Update-connector-position/.NET/Update-connector-position/Update-connector-position.csproj b/Connectors/Update-connector-position/.NET/Update-connector-position/Update-connector-position.csproj index ce0d9000..dacc52ed 100644 --- a/Connectors/Update-connector-position/.NET/Update-connector-position/Update-connector-position.csproj +++ b/Connectors/Update-connector-position/.NET/Update-connector-position/Update-connector-position.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + From cf1b8af10cdd3b978d3b7e52686e0159ca172d44 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Tue, 20 Aug 2024 11:55:51 +0530 Subject: [PATCH 05/19] Find and Replace --- .../Find-and-Replace-in-PowerPoint.csproj | 9 +++++++++ .../Find-and-Replace-in-PowerPoint/Output/gitkeep.txt | 0 .../.NET/Find-and-Replace-in-PowerPoint/Program.cs | 4 ++-- .../Find-and-Replace-in-PowerPoint-using-regex.csproj | 9 +++++++++ .../Output/gitkeep.txt | 0 .../Program.cs | 4 ++-- .../Find-and-highlight-in-PowerPoint.csproj | 9 +++++++++ .../Find-and-highlight-in-PowerPoint/Output/gitkeep.txt | 0 .../.NET/Find-and-highlight-in-PowerPoint/Program.cs | 4 ++-- .../Find-and-highlight-in-Powerpoint-using-regex.csproj | 9 +++++++++ .../Output/gitkeep.txt | 0 .../Program.cs | 4 ++-- .../Find-and-highlight-in-slide.csproj | 9 +++++++++ .../.NET/Find-and-highlight-in-slide/Output/gitkeep.txt | 0 .../.NET/Find-and-highlight-in-slide/Program.cs | 4 ++-- .../Find-and-replace-in-slide.csproj | 9 +++++++++ .../.NET/Find-and-replace-in-slide/Output/gitkeep.txt | 0 .../.NET/Find-and-replace-in-slide/Program.cs | 4 ++-- .../Find-first-occurance/Find-first-occurance.csproj | 9 +++++++++ .../.NET/Find-first-occurance/Output/gitkeep.txt | 0 .../.NET/Find-first-occurance/Program.cs | 4 ++-- .../Match-case/.NET/Match-case/Match-case.csproj | 9 +++++++++ .../Match-case/.NET/Match-case/Output/gitkeep.txt | 0 Find-and-Replace/Match-case/.NET/Match-case/Program.cs | 4 ++-- .../Replace-all-OLE-objects-with-text/Output/gitkeep.txt | 0 .../.NET/Replace-all-OLE-objects-with-text/Program.cs | 4 ++-- .../Replace-all-OLE-objects-with-text.csproj | 9 +++++++++ .../Replace-hyperlink-inside-smartart/Output/gitkeep.txt | 0 .../.NET/Replace-hyperlink-inside-smartart/Program.cs | 4 ++-- .../Replace-hyperlink-inside-smartart.csproj | 9 +++++++++ .../Output/gitkeep.txt | 0 .../.NET/Replace-particular-image-with-text/Program.cs | 4 ++-- .../Replace-particular-image-with-text.csproj | 9 +++++++++ .../.NET/Whole-word-only/Output/gitkeep.txt | 0 .../Whole-word-only/.NET/Whole-word-only/Program.cs | 4 ++-- .../.NET/Whole-word-only/Whole-word-only.csproj | 9 +++++++++ 36 files changed, 132 insertions(+), 24 deletions(-) create mode 100644 Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Output/gitkeep.txt create mode 100644 Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Output/gitkeep.txt create mode 100644 Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Output/gitkeep.txt create mode 100644 Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Output/gitkeep.txt create mode 100644 Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Output/gitkeep.txt create mode 100644 Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Output/gitkeep.txt create mode 100644 Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Output/gitkeep.txt create mode 100644 Find-and-Replace/Match-case/.NET/Match-case/Output/gitkeep.txt create mode 100644 Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Output/gitkeep.txt create mode 100644 Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Output/gitkeep.txt create mode 100644 Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Output/gitkeep.txt create mode 100644 Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Output/gitkeep.txt diff --git a/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Find-and-Replace-in-PowerPoint.csproj b/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Find-and-Replace-in-PowerPoint.csproj index 28348905..347a9b8d 100644 --- a/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Find-and-Replace-in-PowerPoint.csproj +++ b/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Find-and-Replace-in-PowerPoint.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Output/gitkeep.txt b/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Program.cs b/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Program.cs index aa7d8c03..d4cdd8cd 100644 --- a/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Program.cs +++ b/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Find all the occurrences of a particular text in the PowerPoint presentation. @@ -13,5 +13,5 @@ //Replace the text. textPart.Text = "Service"; } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Find-and-Replace-in-PowerPoint-using-regex.csproj b/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Find-and-Replace-in-PowerPoint-using-regex.csproj index 92e487d8..9177cc25 100644 --- a/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Find-and-Replace-in-PowerPoint-using-regex.csproj +++ b/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Find-and-Replace-in-PowerPoint-using-regex.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Output/gitkeep.txt b/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Program.cs b/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Program.cs index d5033121..e655547d 100644 --- a/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Program.cs +++ b/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Program.cs @@ -4,7 +4,7 @@ //Load or open a PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Input.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Input.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); @@ -19,7 +19,7 @@ textPart.Text = "Service"; } //Saves the Presentation. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Output.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Find-and-highlight-in-PowerPoint.csproj b/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Find-and-highlight-in-PowerPoint.csproj index b029266f..dd4ddcaf 100644 --- a/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Find-and-highlight-in-PowerPoint.csproj +++ b/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Find-and-highlight-in-PowerPoint.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Output/gitkeep.txt b/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Program.cs b/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Program.cs index 03b9cfeb..51a15c50 100644 --- a/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Program.cs +++ b/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Find all the occurrences of a particular text in the PowerPoint presentation. @@ -15,5 +15,5 @@ textPart.Font.HighlightColor = ColorObject.Yellow; } } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Find-and-highlight-in-Powerpoint-using-regex.csproj b/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Find-and-highlight-in-Powerpoint-using-regex.csproj index ff20e3ee..60de3fd0 100644 --- a/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Find-and-highlight-in-Powerpoint-using-regex.csproj +++ b/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Find-and-highlight-in-Powerpoint-using-regex.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Output/gitkeep.txt b/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Program.cs b/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Program.cs index cc84875e..1b98aa76 100644 --- a/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Program.cs +++ b/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Program.cs @@ -2,7 +2,7 @@ using System.Text.RegularExpressions; //Load or open a PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Input.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Input.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); @@ -19,5 +19,5 @@ } } //Saves the Presentation. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Output.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Find-and-highlight-in-slide.csproj b/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Find-and-highlight-in-slide.csproj index 512cf2ac..0546177f 100644 --- a/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Find-and-highlight-in-slide.csproj +++ b/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Find-and-highlight-in-slide.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Output/gitkeep.txt b/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Program.cs b/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Program.cs index 3d6e4d05..fb622ff9 100644 --- a/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Program.cs +++ b/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); ISlide slide = pptxDoc.Slides[0]; @@ -16,5 +16,5 @@ textPart.Font.HighlightColor = ColorObject.Yellow; } } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Find-and-replace-in-slide.csproj b/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Find-and-replace-in-slide.csproj index d6d38446..1711ad55 100644 --- a/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Find-and-replace-in-slide.csproj +++ b/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Find-and-replace-in-slide.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Output/gitkeep.txt b/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Program.cs b/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Program.cs index 55cc48a7..1814d6b0 100644 --- a/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Program.cs +++ b/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); ISlide slide = pptxDoc.Slides[0]; @@ -14,5 +14,5 @@ //Replace the text. textPart.Text = "Service"; } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Find-first-occurance.csproj b/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Find-first-occurance.csproj index 52973803..605c3928 100644 --- a/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Find-first-occurance.csproj +++ b/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Find-first-occurance.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Output/gitkeep.txt b/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Program.cs b/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Program.cs index 8be02101..b55ac411 100644 --- a/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Program.cs +++ b/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Find the first occurrence of a particular text in the PowerPoint presentation. @@ -10,5 +10,5 @@ ITextPart textPart = textSelection.GetAsOneTextPart(); //Replace the text. textPart.Text = "Service"; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj b/Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj index 4af9e130..ba1e2dd6 100644 --- a/Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj +++ b/Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Match-case/.NET/Match-case/Output/gitkeep.txt b/Find-and-Replace/Match-case/.NET/Match-case/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Match-case/.NET/Match-case/Program.cs b/Find-and-Replace/Match-case/.NET/Match-case/Program.cs index 4406cd7a..79d1657e 100644 --- a/Find-and-Replace/Match-case/.NET/Match-case/Program.cs +++ b/Find-and-Replace/Match-case/.NET/Match-case/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); bool matchCase = true; @@ -15,5 +15,5 @@ //Replace the text. textPart.Text = "Service"; } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Output/gitkeep.txt b/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Program.cs b/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Program.cs index 853378d8..f4d72ae0 100644 --- a/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Program.cs +++ b/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Program.cs @@ -2,13 +2,13 @@ using System.ComponentModel; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Replace OLE with text. ReplaceOLEWithText(pptxDoc, "Embedded file was here"); //Save output PowerPoint Presentation -using FileStream outputStream = new(Path.GetFullPath(@"../../../Data/Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Replace-all-OLE-objects-with-text.csproj b/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Replace-all-OLE-objects-with-text.csproj index 6a4df467..b77ea20a 100644 --- a/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Replace-all-OLE-objects-with-text.csproj +++ b/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Replace-all-OLE-objects-with-text.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Output/gitkeep.txt b/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Program.cs b/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Program.cs index ccf77a07..a75a88ac 100644 --- a/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Program.cs +++ b/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Program.cs @@ -1,6 +1,6 @@ using Syncfusion.Presentation; -FileStream stream = new FileStream("../../../Data/Input.pptx", FileMode.Open, FileAccess.Read); +FileStream stream = new FileStream(Path.GetFullPath(@"Data/Input.pptx"), FileMode.Open, FileAccess.Read); IPresentation pptxDoc = Presentation.Open(stream); //Hyperlinks to find string findText1 = "www.xyz.com"; @@ -13,7 +13,7 @@ ReplaceHyperlink(slide, findText2); ReplaceHyperlink(slide, findText3); //Save the output -FileStream output = new FileStream("../../../Data/Output.pptx", FileMode.Create, FileAccess.Write); +FileStream output = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.Write); pptxDoc.Save(output); pptxDoc.Close(); diff --git a/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Replace-hyperlink-inside-smartart.csproj b/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Replace-hyperlink-inside-smartart.csproj index 5189f034..8a215065 100644 --- a/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Replace-hyperlink-inside-smartart.csproj +++ b/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Replace-hyperlink-inside-smartart.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Output/gitkeep.txt b/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Program.cs b/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Program.cs index d2d8d275..a22e54be 100644 --- a/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Program.cs +++ b/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Program.cs @@ -1,13 +1,13 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Replace image with text. ReplaceImageWithText(pptxDoc, "Image was here"); //Save output PowerPoint Presentation -using FileStream outputStream = new(Path.GetFullPath(@"../../../Data/Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Replace-particular-image-with-text.csproj b/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Replace-particular-image-with-text.csproj index f33da5e8..dc243917 100644 --- a/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Replace-particular-image-with-text.csproj +++ b/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Replace-particular-image-with-text.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Output/gitkeep.txt b/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Program.cs b/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Program.cs index dbf6c002..9676f0fa 100644 --- a/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Program.cs +++ b/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); bool matchCase = false; @@ -15,5 +15,5 @@ //Replace the text. textPart.Text = "Service"; } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj b/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj index b1b83808..21fc0310 100644 --- a/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj +++ b/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + From 7d87f912eef6acd4b78a86a9bf0d4cc72e669140 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Tue, 20 Aug 2024 12:28:04 +0530 Subject: [PATCH 06/19] Headers and Footers --- .../Add-date-and-time-in-PowerPoint-slide.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../Add-date-and-time-in-PowerPoint-slide/Program.cs | 2 +- .../Add-footer-in-PowerPoint.csproj | 6 ++++++ .../.NET/Add-footer-in-PowerPoint/Output/gitkeep.txt | 0 .../.NET/Add-footer-in-PowerPoint/Program.cs | 2 +- .../Add-footer-in-master-and-layout-slides.csproj | 9 +++++++++ .../Output/gitkeep.txt | 0 .../Add-footer-in-master-and-layout-slides/Program.cs | 4 ++-- .../Add-headers-and-footers-in-Notes.csproj | 6 ++++++ .../Add-headers-and-footers-in-Notes/Output/gitkeep.txt | 0 .../.NET/Add-headers-and-footers-in-Notes/Program.cs | 2 +- .../Add-slide-number-in-PowerPoint-slide.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../.NET/Add-slide-number-in-PowerPoint-slide/Program.cs | 2 +- .../.NET/Edit-footer-text/Edit-footer-text.csproj | 9 +++++++++ .../.NET/Edit-footer-text/Output/gitkeep.txt | 0 .../Edit-footer-text/.NET/Edit-footer-text/Program.cs | 4 ++-- .../.NET/Edit-header-text/Edit-header-text.csproj | 9 +++++++++ .../.NET/Edit-header-text/Output/gitkeep.txt | 0 .../Edit-header-text/.NET/Edit-header-text/Program.cs | 4 ++-- .../Modify-date-and-time-format.csproj | 9 +++++++++ .../.NET/Modify-date-and-time-format/Output/gitkeep.txt | 0 .../.NET/Modify-date-and-time-format/Program.cs | 4 ++-- .../Modify-footer-text-font.csproj | 9 +++++++++ .../.NET/Modify-footer-text-font/Output/gitkeep.txt | 0 .../.NET/Modify-footer-text-font/Program.cs | 4 ++-- .../Output/gitkeep.txt | 0 .../.NET/Remove-footers-from-all-title-slides/Program.cs | 4 ++-- .../Remove-footers-from-all-title-slides.csproj | 9 +++++++++ 30 files changed, 94 insertions(+), 16 deletions(-) create mode 100644 Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Output/gitkeep.txt create mode 100644 Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Output/gitkeep.txt diff --git a/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Add-date-and-time-in-PowerPoint-slide.csproj b/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Add-date-and-time-in-PowerPoint-slide.csproj index 013d68b5..59e6b327 100644 --- a/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Add-date-and-time-in-PowerPoint-slide.csproj +++ b/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Add-date-and-time-in-PowerPoint-slide.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Output/gitkeep.txt b/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Program.cs b/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Program.cs index 7f5e70f5..997731f1 100644 --- a/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Program.cs +++ b/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Program.cs @@ -17,5 +17,5 @@ //Add text to the TextPart. textPart.Text = "AdventureWorks Cycles, the fictitious company on which the AdventureWorks sample databases are based, is a large, multinational manufacturing company. The company manufactures and sells metal and composite bicycles to North American, European and Asian commercial markets. While its base operation is located in Washington with 290 employees, several regional sales teams are located throughout their market base."; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj b/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj index 4260b81d..0893fd14 100644 --- a/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj +++ b/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Output/gitkeep.txt b/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Program.cs b/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Program.cs index 7f3bc112..e70795d5 100644 --- a/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Program.cs +++ b/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Program.cs @@ -17,5 +17,5 @@ //Add text to the TextPart. textPart.Text = "AdventureWorks Cycles, the fictitious company on which the AdventureWorks sample databases are based, is a large, multinational manufacturing company. The company manufactures and sells metal and composite bicycles to North American, European and Asian commercial markets. While its base operation is located in Washington with 290 employees, several regional sales teams are located throughout their market base."; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Add-footer-in-master-and-layout-slides.csproj b/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Add-footer-in-master-and-layout-slides.csproj index 76e51685..878b0512 100644 --- a/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Add-footer-in-master-and-layout-slides.csproj +++ b/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Add-footer-in-master-and-layout-slides.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Output/gitkeep.txt b/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Program.cs b/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Program.cs index 523eb42c..7eccbe49 100644 --- a/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Program.cs +++ b/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Access the first master slide in PowerPoint file. @@ -26,5 +26,5 @@ //Set the format of the DateTime Footer in Layout slide. layoutSlide.HeadersFooters.DateAndTime.Format = DateTimeFormatType.DateTimeMMddyyhmmAMPM; } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Add-headers-and-footers-in-Notes.csproj b/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Add-headers-and-footers-in-Notes.csproj index 66abbf34..e061bf28 100644 --- a/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Add-headers-and-footers-in-Notes.csproj +++ b/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Add-headers-and-footers-in-Notes.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Output/gitkeep.txt b/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Program.cs b/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Program.cs index 65dadca4..dc10c01a 100644 --- a/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Program.cs +++ b/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Program.cs @@ -19,5 +19,5 @@ //Set the text to be added to the Footer of the Notes slide. notesSlide.HeadersFooters.Footer.Text = "Notes slide Footer"; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Add-slide-number-in-PowerPoint-slide.csproj b/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Add-slide-number-in-PowerPoint-slide.csproj index 5de936ce..2f865fb9 100644 --- a/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Add-slide-number-in-PowerPoint-slide.csproj +++ b/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Add-slide-number-in-PowerPoint-slide.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Output/gitkeep.txt b/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Program.cs b/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Program.cs index 2b2b66eb..f6df0eda 100644 --- a/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Program.cs +++ b/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Program.cs @@ -15,5 +15,5 @@ //Add text to the TextPart. textPart.Text = "AdventureWorks Cycles, the fictitious company on which the AdventureWorks sample databases are based, is a large, multinational manufacturing company. The company manufactures and sells metal and composite bicycles to North American, European and Asian commercial markets. While its base operation is located in Washington with 290 employees, several regional sales teams are located throughout their market base."; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Edit-footer-text.csproj b/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Edit-footer-text.csproj index 1d0476c0..0ff0f693 100644 --- a/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Edit-footer-text.csproj +++ b/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Edit-footer-text.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Output/gitkeep.txt b/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Program.cs b/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Program.cs index 62e1d57a..324a4e7d 100644 --- a/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Program.cs +++ b/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Program.cs @@ -1,12 +1,12 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Gets the first slide from the cloned PowerPoint presentation. ISlide slide = pptxDoc.Slides[0]; //Modify the Footer text. slide.HeadersFooters.Footer.Text = "Footer content modified"; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Edit-header-text.csproj b/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Edit-header-text.csproj index 84acdb4f..e29a7635 100644 --- a/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Edit-header-text.csproj +++ b/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Edit-header-text.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Output/gitkeep.txt b/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Program.cs b/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Program.cs index ca9dd7db..795f264a 100644 --- a/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Program.cs +++ b/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Program.cs @@ -1,12 +1,12 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the notes slide from the presenatation. INotesSlide notesSlide = pptxDoc.Slides[0].NotesSlide; //Modify the existing content of the header. notesSlide.HeadersFooters.Header.Text = "Header content is modified"; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Modify-date-and-time-format.csproj b/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Modify-date-and-time-format.csproj index a74c8e95..7501a7e9 100644 --- a/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Modify-date-and-time-format.csproj +++ b/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Modify-date-and-time-format.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Output/gitkeep.txt b/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Program.cs b/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Program.cs index a16b5122..f8444e21 100644 --- a/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Program.cs +++ b/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Program.cs @@ -1,12 +1,12 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide from the cloned PowerPoint presentation. ISlide slide = pptxDoc.Slides[0]; //Modify Date and Time format of the Footer. slide.HeadersFooters.DateAndTime.Format = DateTimeFormatType.DateTimeddddMMMMddyyyy; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Modify-footer-text-font.csproj b/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Modify-footer-text-font.csproj index efdba91a..94be0fcd 100644 --- a/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Modify-footer-text-font.csproj +++ b/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Modify-footer-text-font.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Output/gitkeep.txt b/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Program.cs b/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Program.cs index d5acfafd..62a2ef91 100644 --- a/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Program.cs +++ b/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Get the first slide from the cloned PowerPoint presentation. @@ -18,5 +18,5 @@ shape.TextBody.Paragraphs[0].Font.FontSize = 18; } } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Output/gitkeep.txt b/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Program.cs b/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Program.cs index d0b69d74..1198c4bd 100644 --- a/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Program.cs +++ b/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Iterate each slide in the Presentation. @@ -18,5 +18,5 @@ slide.HeadersFooters.SlideNumber.Visible = false; } } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Remove-footers-from-all-title-slides.csproj b/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Remove-footers-from-all-title-slides.csproj index 07030fc3..155bf906 100644 --- a/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Remove-footers-from-all-title-slides.csproj +++ b/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Remove-footers-from-all-title-slides.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + From 1da1e8e302043053427956c0eff80220d511f988 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Tue, 20 Aug 2024 12:45:57 +0530 Subject: [PATCH 07/19] Hyperlinks --- .../Add-file-hyperlink-to-picture.csproj | 12 ++++++++++++ .../Add-file-hyperlink-to-picture/Output/gitkeep.txt | 0 .../.NET/Add-file-hyperlink-to-picture/Program.cs | 6 +++--- .../Add-hyperlink-to-PowerPoint-picture.csproj | 9 +++++++++ .../Output/gitkeep.txt | 0 .../Add-hyperlink-to-PowerPoint-picture/Program.cs | 4 ++-- .../Add-hyperlink-to-PowerPoint-shape.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../Add-hyperlink-to-PowerPoint-shape/Program.cs | 2 +- .../Add-hyperlink-to-PowerPoint-text.csproj | 6 ++++++ .../Output/gitkeep.txt | 0 .../.NET/Add-hyperlink-to-PowerPoint-text/Program.cs | 2 +- .../Get-hyperlink-from-shape.csproj | 9 +++++++++ .../.NET/Get-hyperlink-from-shape/Output/gitkeep.txt | 0 .../.NET/Get-hyperlink-from-shape/Program.cs | 4 ++-- .../Get-hyperlink-from-text.csproj | 9 +++++++++ .../.NET/Get-hyperlink-from-text/Output/gitkeep.txt | 0 .../.NET/Get-hyperlink-from-text/Program.cs | 4 ++-- .../Remove-hyperlink-from-shape/Output/gitkeep.txt | 0 .../.NET/Remove-hyperlink-from-shape/Program.cs | 4 ++-- .../Remove-hyperlink-from-shape.csproj | 9 +++++++++ .../Remove-hyperlink-from-text/Output/gitkeep.txt | 0 .../.NET/Remove-hyperlink-from-text/Program.cs | 4 ++-- .../Remove-hyperlink-from-text.csproj | 9 +++++++++ 24 files changed, 84 insertions(+), 15 deletions(-) create mode 100644 Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Output/gitkeep.txt create mode 100644 Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Output/gitkeep.txt create mode 100644 Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Output/gitkeep.txt create mode 100644 Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Output/gitkeep.txt create mode 100644 Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Output/gitkeep.txt create mode 100644 Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Output/gitkeep.txt create mode 100644 Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Output/gitkeep.txt create mode 100644 Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Output/gitkeep.txt diff --git a/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Add-file-hyperlink-to-picture.csproj b/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Add-file-hyperlink-to-picture.csproj index 0ef9c964..ae09d2a1 100644 --- a/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Add-file-hyperlink-to-picture.csproj +++ b/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Add-file-hyperlink-to-picture.csproj @@ -12,4 +12,16 @@ + + + Always + + + Always + + + Always + + + diff --git a/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Output/gitkeep.txt b/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Program.cs b/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Program.cs index ad7722bb..dd76375b 100644 --- a/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Program.cs +++ b/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Program.cs @@ -5,11 +5,11 @@ //Add a slide of blank layout type. ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank); //Get a picture as stream. -using FileStream pictureStream = new("../../../Data/Image.jpg", FileMode.Open); +using FileStream pictureStream = new(Path.GetFullPath(@"Data/Image.jpg"), FileMode.Open); //Add the picture to a slide by specifying its size and position. IPicture picture = slide.Pictures.AddPicture(pictureStream, 0, 0, 250, 250); //Set the File path as hyperlink. -IHyperLink hyperLink = (picture as IShape).SetHyperlink("Data/WordDocument.docx"); +IHyperLink hyperLink = (picture as IShape).SetHyperlink(Path.GetFullPath(@"Data/WordDocument.docx")); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Add-hyperlink-to-PowerPoint-picture.csproj b/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Add-hyperlink-to-PowerPoint-picture.csproj index cbc867fd..b5f9cc30 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Add-hyperlink-to-PowerPoint-picture.csproj +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Add-hyperlink-to-PowerPoint-picture.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Output/gitkeep.txt b/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Program.cs b/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Program.cs index 493eeab4..7dc15905 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Program.cs +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Program.cs @@ -5,11 +5,11 @@ //Add a slide of blank layout type. ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank); //Get a picture as stream. -using FileStream pictureStream = new("../../../Data/Image.jpg", FileMode.Open); +using FileStream pictureStream = new(Path.GetFullPath(@"Data/Image.jpg"), FileMode.Open); //Add the picture to a slide by specifying its size and position. IPicture picture = slide.Pictures.AddPicture(pictureStream, 0, 0, 250, 250); //Set the Email hyperlink to the picture. IHyperLink hyperLink = (picture as IShape).SetHyperlink("mailto:sales@syncfusion.com"); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Add-hyperlink-to-PowerPoint-shape.csproj b/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Add-hyperlink-to-PowerPoint-shape.csproj index 9fb829b6..b42f2ff5 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Add-hyperlink-to-PowerPoint-shape.csproj +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Add-hyperlink-to-PowerPoint-shape.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Output/gitkeep.txt b/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Program.cs b/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Program.cs index 72925a23..6ed0ca2e 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Program.cs +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Program.cs @@ -13,5 +13,5 @@ //Get the target slide of the hyperlink. ISlide targetSlide = hyperLink.TargetSlide; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Add-hyperlink-to-PowerPoint-text.csproj b/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Add-hyperlink-to-PowerPoint-text.csproj index 6a00873d..cb9d3d00 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Add-hyperlink-to-PowerPoint-text.csproj +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Add-hyperlink-to-PowerPoint-text.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Output/gitkeep.txt b/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Program.cs b/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Program.cs index 530a1696..0e3d5962 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Program.cs +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Program.cs @@ -13,5 +13,5 @@ //Set the web hyperlink to the TextPart. IHyperLink hyperLink = paragraph.TextParts[0].SetHyperlink("http://www.syncfusion.com"); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj b/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj index 3273aa75..289819d0 100644 --- a/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj +++ b/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Output/gitkeep.txt b/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Program.cs b/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Program.cs index 3f8cfd9f..e00f0476 100644 --- a/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Program.cs +++ b/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from the Presentation. @@ -18,5 +18,5 @@ string url = hyperlink.Url; //Get the screen tip text of a hyperlink. string screenTip = hyperlink.ScreenTip; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj b/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj index 9cfb49a2..77860689 100644 --- a/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj +++ b/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Output/gitkeep.txt b/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Program.cs b/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Program.cs index e586a6bf..73ece504 100644 --- a/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Program.cs +++ b/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from the Presentation. @@ -22,5 +22,5 @@ string url = hyperlink.Url; //Get the screen tip text of a hyperlink. string screenTip = hyperlink.ScreenTip; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Output/gitkeep.txt b/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Program.cs b/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Program.cs index 5f17c447..3f4cf8ef 100644 --- a/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Program.cs +++ b/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from the Presentation. @@ -11,5 +11,5 @@ //Remove the hyperlink from the shape. shape.RemoveHyperlink(); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Remove-hyperlink-from-shape.csproj b/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Remove-hyperlink-from-shape.csproj index d06b689d..49d342e0 100644 --- a/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Remove-hyperlink-from-shape.csproj +++ b/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Remove-hyperlink-from-shape.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Output/gitkeep.txt b/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Program.cs b/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Program.cs index 799993e7..ad838cc4 100644 --- a/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Program.cs +++ b/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from the Presentation. @@ -14,5 +14,5 @@ ITextPart textPart = paragraph.TextParts[0]; //Remove the hyperlink from the TextPart. textPart.RemoveHyperLink(); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Remove-hyperlink-from-text.csproj b/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Remove-hyperlink-from-text.csproj index ca96d284..042bd045 100644 --- a/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Remove-hyperlink-from-text.csproj +++ b/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Remove-hyperlink-from-text.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + From 871556020e4799e49555b61ee728297321050eb9 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Tue, 20 Aug 2024 13:24:33 +0530 Subject: [PATCH 08/19] Images --- .../.NET/Add-SVG-image/Add-SVG-image.csproj | 12 ++++++++++++ .../.NET/Add-SVG-image/Output/gitkeep.txt | 0 Images/Add-SVG-image/.NET/Add-SVG-image/Program.cs | 6 +++--- .../Add-image-into-PowerPoint-Slide.csproj | 9 +++++++++ .../Output/gitkeep.txt | 0 .../.NET/Add-image-into-PowerPoint-Slide/Program.cs | 4 ++-- .../Crop_and_insert_image.csproj | 9 +++++++++ .../.NET/Crop_and_insert_image/Output/gitkeep.txt | 0 .../.NET/Crop_and_insert_image/Program.cs | 4 ++-- Images/Crop_image/.NET/Crop_image/Crop_image.csproj | 9 +++++++++ Images/Crop_image/.NET/Crop_image/Output/gitkeep.txt | 0 Images/Crop_image/.NET/Crop_image/Program.cs | 4 ++-- .../Extract_crop_image/Extract_crop_image.csproj | 9 +++++++++ .../.NET/Extract_crop_image/Output/gitkeep.txt | 0 .../.NET/Extract_crop_image/Program.cs | 4 ++-- .../.NET/Remove-all-images/Output/gitkeep.txt | 0 .../.NET/Remove-all-images/Program.cs | 4 ++-- .../.NET/Remove-all-images/Remove-all-images.csproj | 9 +++++++++ .../.NET/Remove_crop_from_image/Output/gitkeep.txt | 0 .../.NET/Remove_crop_from_image/Program.cs | 4 ++-- .../Remove_crop_from_image.csproj | 9 +++++++++ .../.NET/Replace-SVG-Image/Output/gitkeep.txt | 0 .../.NET/Replace-SVG-Image/Program.cs | 6 +++--- .../.NET/Replace-SVG-Image/Replace-SVG-Image.csproj | 12 ++++++++++++ .../.NET/Replace-existing-image/Output/gitkeep.txt | 0 .../.NET/Replace-existing-image/Program.cs | 6 +++--- .../Replace-existing-image.csproj | 12 ++++++++++++ 27 files changed, 111 insertions(+), 21 deletions(-) create mode 100644 Images/Add-SVG-image/.NET/Add-SVG-image/Output/gitkeep.txt create mode 100644 Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Output/gitkeep.txt create mode 100644 Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Output/gitkeep.txt create mode 100644 Images/Crop_image/.NET/Crop_image/Output/gitkeep.txt create mode 100644 Images/Extract_crop_image/.NET/Extract_crop_image/Output/gitkeep.txt create mode 100644 Images/Remove-all-images/.NET/Remove-all-images/Output/gitkeep.txt create mode 100644 Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Output/gitkeep.txt create mode 100644 Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Output/gitkeep.txt create mode 100644 Images/Replace-existing-image/.NET/Replace-existing-image/Output/gitkeep.txt diff --git a/Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj b/Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj index e717c96f..410375ab 100644 --- a/Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj +++ b/Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj @@ -12,4 +12,16 @@ + + + Always + + + Always + + + Always + + + diff --git a/Images/Add-SVG-image/.NET/Add-SVG-image/Output/gitkeep.txt b/Images/Add-SVG-image/.NET/Add-SVG-image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Add-SVG-image/.NET/Add-SVG-image/Program.cs b/Images/Add-SVG-image/.NET/Add-SVG-image/Program.cs index fed0fab3..c2bd9a9b 100644 --- a/Images/Add-SVG-image/.NET/Add-SVG-image/Program.cs +++ b/Images/Add-SVG-image/.NET/Add-SVG-image/Program.cs @@ -5,9 +5,9 @@ //Add a blank slide. ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank); //Get a SVG image (icon) as stream. -using FileStream svgImageStream = new(@"../../../Data/Image.svg", FileMode.Open); -using FileStream fallbackImageStream = new(@"../../../Data/Image.png", FileMode.Open); +using FileStream svgImageStream = new(Path.GetFullPath(@"Data/Image.svg"), FileMode.Open); +using FileStream fallbackImageStream = new(Path.GetFullPath(@"Data/Image.png"), FileMode.Open); //Add the icon to a slide by specifying its size and position. IPicture icon = slide.Pictures.AddPicture(svgImageStream, fallbackImageStream, 0, 0, 250, 250); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Add-image-into-PowerPoint-Slide.csproj b/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Add-image-into-PowerPoint-Slide.csproj index 4cb94dc4..00164040 100644 --- a/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Add-image-into-PowerPoint-Slide.csproj +++ b/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Add-image-into-PowerPoint-Slide.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Output/gitkeep.txt b/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Program.cs b/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Program.cs index 987ceab9..01cc97e8 100644 --- a/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Program.cs +++ b/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Program.cs @@ -5,8 +5,8 @@ //Add a blank slide. ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank); //Get a picture as stream. -using FileStream pictureStream = new(@"../../../Data/Image.jpg", FileMode.Open); +using FileStream pictureStream = new(Path.GetFullPath(@"Data/Image.jpg"), FileMode.Open); //Add the picture to a slide by specifying its size and position. IPicture picture = slide.Pictures.AddPicture(pictureStream, 0, 0, 250, 250); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Crop_and_insert_image.csproj b/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Crop_and_insert_image.csproj index 29093591..4215cd49 100644 --- a/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Crop_and_insert_image.csproj +++ b/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Crop_and_insert_image.csproj @@ -11,4 +11,13 @@ + + + Always + + + Always + + + diff --git a/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Output/gitkeep.txt b/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Program.cs b/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Program.cs index f7ffd097..7a18efc0 100644 --- a/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Program.cs +++ b/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Program.cs @@ -5,7 +5,7 @@ //Add a blank slide. ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank); //Get a picture as stream. -using FileStream pictureStream = new FileStream(Path.GetFullPath(@"../../../Data/Image.png"), FileMode.Open); +using FileStream pictureStream = new FileStream(Path.GetFullPath(@"Data/Image.png"), FileMode.Open); //Add the picture to a slide by specifying its size and position. IPicture picture = slide.Pictures.AddPicture(pictureStream, 0, 0, 250, 250); @@ -22,5 +22,5 @@ picture.Crop.OffsetY = -9.36f; //Save the PowerPoint Presentation. -using FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Output.pptx"), FileMode.Create); +using FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create); pptxDoc.Save(outputStream); diff --git a/Images/Crop_image/.NET/Crop_image/Crop_image.csproj b/Images/Crop_image/.NET/Crop_image/Crop_image.csproj index 29093591..a4f873ea 100644 --- a/Images/Crop_image/.NET/Crop_image/Crop_image.csproj +++ b/Images/Crop_image/.NET/Crop_image/Crop_image.csproj @@ -11,4 +11,13 @@ + + + Always + + + Always + + + diff --git a/Images/Crop_image/.NET/Crop_image/Output/gitkeep.txt b/Images/Crop_image/.NET/Crop_image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Crop_image/.NET/Crop_image/Program.cs b/Images/Crop_image/.NET/Crop_image/Program.cs index 8df2954c..4d63bba2 100644 --- a/Images/Crop_image/.NET/Crop_image/Program.cs +++ b/Images/Crop_image/.NET/Crop_image/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Open an existing PowerPoint Presentation. -using FileStream inputStream = new FileStream(@"../../../Data/Sample.pptx", FileMode.Open, FileAccess.Read); +using FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/Sample.pptx"), FileMode.Open, FileAccess.Read); using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from the Presentation. @@ -22,5 +22,5 @@ picture.Crop.OffsetY = -9.36f; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new FileStream("Output.pptx", FileMode.Create); +using FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Images/Extract_crop_image/.NET/Extract_crop_image/Extract_crop_image.csproj b/Images/Extract_crop_image/.NET/Extract_crop_image/Extract_crop_image.csproj index e3f14194..7261b765 100644 --- a/Images/Extract_crop_image/.NET/Extract_crop_image/Extract_crop_image.csproj +++ b/Images/Extract_crop_image/.NET/Extract_crop_image/Extract_crop_image.csproj @@ -11,4 +11,13 @@ + + + Always + + + Always + + + diff --git a/Images/Extract_crop_image/.NET/Extract_crop_image/Output/gitkeep.txt b/Images/Extract_crop_image/.NET/Extract_crop_image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Extract_crop_image/.NET/Extract_crop_image/Program.cs b/Images/Extract_crop_image/.NET/Extract_crop_image/Program.cs index 15aa05a9..fb48c777 100644 --- a/Images/Extract_crop_image/.NET/Extract_crop_image/Program.cs +++ b/Images/Extract_crop_image/.NET/Extract_crop_image/Program.cs @@ -5,7 +5,7 @@ //Open an existing PowerPoint Presentation. -using FileStream fileStream = new FileStream(Path.GetFullPath(@"../../../Data/Sample.pptx"), FileMode.Open, FileAccess.Read); +using FileStream fileStream = new FileStream(Path.GetFullPath(@"Data/Sample.pptx"), FileMode.Open, FileAccess.Read); using IPresentation presentation = Presentation.Open(fileStream); //Get the first slide. ISlide slide = presentation.Slides[0]; @@ -14,7 +14,7 @@ //Get cropped image stream. using MemoryStream stream = GetCroppedPictureData(new MemoryStream(picture.ImageData), picture.Crop); //Save the image as stream. -using FileStream fileStreamOutput = new FileStream(Path.GetFullPath(@"../../../Output.png"), FileMode.Create); +using FileStream fileStreamOutput = new FileStream(Path.GetFullPath(@"Output/Output.png"), FileMode.Create); stream.CopyTo(fileStreamOutput); // Get the cropped picture data stream. diff --git a/Images/Remove-all-images/.NET/Remove-all-images/Output/gitkeep.txt b/Images/Remove-all-images/.NET/Remove-all-images/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Remove-all-images/.NET/Remove-all-images/Program.cs b/Images/Remove-all-images/.NET/Remove-all-images/Program.cs index 8bb5cef9..aebefffe 100644 --- a/Images/Remove-all-images/.NET/Remove-all-images/Program.cs +++ b/Images/Remove-all-images/.NET/Remove-all-images/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from Presentation. @@ -13,5 +13,5 @@ slide.Pictures.Remove(picture); break; } -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Images/Remove-all-images/.NET/Remove-all-images/Remove-all-images.csproj b/Images/Remove-all-images/.NET/Remove-all-images/Remove-all-images.csproj index 4d68602f..fcda8591 100644 --- a/Images/Remove-all-images/.NET/Remove-all-images/Remove-all-images.csproj +++ b/Images/Remove-all-images/.NET/Remove-all-images/Remove-all-images.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Output/gitkeep.txt b/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Program.cs b/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Program.cs index 46baa662..7911ca34 100644 --- a/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Program.cs +++ b/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Program.cs @@ -2,7 +2,7 @@ using SkiaSharp; //Open an existing PowerPoint Presentation. -using FileStream inputStream = new FileStream(Path.GetFullPath(@"../../../Data/Sample.pptx"), FileMode.Open, FileAccess.Read); +using FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/Sample.pptx"), FileMode.Open, FileAccess.Read); using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from the Presentation. ISlide slide = pptxDoc.Slides[0]; @@ -18,7 +18,7 @@ picture.Crop.OffsetX = 0; picture.Crop.OffsetY = 0; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new FileStream(Path.GetFullPath(@"../../../Output.pptx"), FileMode.Create); +using FileStream outputStream = new FileStream(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create); pptxDoc.Save(outputStream); diff --git a/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Remove_crop_from_image.csproj b/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Remove_crop_from_image.csproj index e3f14194..7261b765 100644 --- a/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Remove_crop_from_image.csproj +++ b/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Remove_crop_from_image.csproj @@ -11,4 +11,13 @@ + + + Always + + + Always + + + diff --git a/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Output/gitkeep.txt b/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Program.cs b/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Program.cs index c0056155..075c754e 100644 --- a/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Program.cs +++ b/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from the Presentation @@ -9,7 +9,7 @@ //Retrieve the icon object from the slide IPicture icon = slide.Pictures[0]; //Get the new picture as stream. -using FileStream pictureStream = new(@"../../../Data/Image.svg", FileMode.Open); +using FileStream pictureStream = new(Path.GetFullPath(@"Data/Image.svg"), FileMode.Open); //Create instance for memory stream using MemoryStream memoryStream = new(); //Copy stream to memoryStream. @@ -17,5 +17,5 @@ //Replace the existing icon image with new image //SvgData property will return null, if it is not an icon icon.SvgData = memoryStream.ToArray(); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Replace-SVG-Image.csproj b/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Replace-SVG-Image.csproj index 356d9bd1..fe45c629 100644 --- a/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Replace-SVG-Image.csproj +++ b/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Replace-SVG-Image.csproj @@ -12,4 +12,16 @@ + + + Always + + + Always + + + Always + + + diff --git a/Images/Replace-existing-image/.NET/Replace-existing-image/Output/gitkeep.txt b/Images/Replace-existing-image/.NET/Replace-existing-image/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Images/Replace-existing-image/.NET/Replace-existing-image/Program.cs b/Images/Replace-existing-image/.NET/Replace-existing-image/Program.cs index 9f8ab4f6..95867318 100644 --- a/Images/Replace-existing-image/.NET/Replace-existing-image/Program.cs +++ b/Images/Replace-existing-image/.NET/Replace-existing-image/Program.cs @@ -1,7 +1,7 @@ using Syncfusion.Presentation; //Load or open an PowerPoint Presentation. -using FileStream inputStream = new(Path.GetFullPath(@"../../../Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); +using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Open an existing PowerPoint presentation. using IPresentation pptxDoc = Presentation.Open(inputStream); //Retrieve the first slide from the Presentation. @@ -9,12 +9,12 @@ //Retrieve the first picture from the slide. IPicture picture = slide.Pictures[0]; //Get the new picture as stream. -using FileStream pictureStream = new(@"../../../Data/Image.jpg", FileMode.Open); +using FileStream pictureStream = new(Path.GetFullPath(@"Data/Image.jpg"), FileMode.Open); //Create instance for memory stream. using MemoryStream memoryStream = new(); //Copy stream to memoryStream. pictureStream.CopyTo(memoryStream); //Replace the existing image with new image. picture.ImageData = memoryStream.ToArray(); -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file diff --git a/Images/Replace-existing-image/.NET/Replace-existing-image/Replace-existing-image.csproj b/Images/Replace-existing-image/.NET/Replace-existing-image/Replace-existing-image.csproj index 7a498ea1..72d573e4 100644 --- a/Images/Replace-existing-image/.NET/Replace-existing-image/Replace-existing-image.csproj +++ b/Images/Replace-existing-image/.NET/Replace-existing-image/Replace-existing-image.csproj @@ -12,4 +12,16 @@ + + + Always + + + Always + + + Always + + + From f17dfdd677e56b68191194fc8b3209766a157f69 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Tue, 20 Aug 2024 13:34:08 +0530 Subject: [PATCH 09/19] Lists --- .../Create-bulleted-list/Create-bulleted-list.csproj | 6 ++++++ .../.NET/Create-bulleted-list/Output/gitkeep.txt | 0 .../.NET/Create-bulleted-list/Program.cs | 2 +- .../Create-multilevel-list/Create-multilevel-list.csproj | 6 ++++++ .../.NET/Create-multilevel-list/Output/gitkeep.txt | 0 .../.NET/Create-multilevel-list/Program.cs | 2 +- .../Create-numbered-list/Create-numbered-list.csproj | 6 ++++++ .../.NET/Create-numbered-list/Output/gitkeep.txt | 0 .../.NET/Create-numbered-list/Program.cs | 2 +- .../.NET/Create-picture-list/Create-picture-list.csproj | 9 +++++++++ .../.NET/Create-picture-list/Output/gitkeep.txt | 0 .../.NET/Create-picture-list/Program.cs | 4 ++-- 12 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 Lists/Create-bulleted-list/.NET/Create-bulleted-list/Output/gitkeep.txt create mode 100644 Lists/Create-multilevel-list/.NET/Create-multilevel-list/Output/gitkeep.txt create mode 100644 Lists/Create-numbered-list/.NET/Create-numbered-list/Output/gitkeep.txt create mode 100644 Lists/Create-picture-list/.NET/Create-picture-list/Output/gitkeep.txt diff --git a/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Create-bulleted-list.csproj b/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Create-bulleted-list.csproj index 1d87fa5f..a4a3ecc6 100644 --- a/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Create-bulleted-list.csproj +++ b/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Create-bulleted-list.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Output/gitkeep.txt b/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Program.cs b/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Program.cs index c1d6d275..7b014f26 100644 --- a/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Program.cs +++ b/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Program.cs @@ -51,5 +51,5 @@ paragraph.ListFormat.FontName = "Symbol"; //Set the bullet character size. Here, 100 means 100% of its text. Possible values can range from 25 to 400. paragraph.ListFormat.Size = 100; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Create-multilevel-list.csproj b/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Create-multilevel-list.csproj index 6c89499f..4a0c4cc2 100644 --- a/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Create-multilevel-list.csproj +++ b/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Create-multilevel-list.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Output/gitkeep.txt b/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Program.cs b/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Program.cs index 8307f80d..a7e48d48 100644 --- a/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Program.cs +++ b/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Program.cs @@ -51,5 +51,5 @@ paragraph.IndentLevelNumber = 1; //Set the hanging value. paragraph.FirstLineIndent = -20; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Lists/Create-numbered-list/.NET/Create-numbered-list/Create-numbered-list.csproj b/Lists/Create-numbered-list/.NET/Create-numbered-list/Create-numbered-list.csproj index b73cf56c..20672431 100644 --- a/Lists/Create-numbered-list/.NET/Create-numbered-list/Create-numbered-list.csproj +++ b/Lists/Create-numbered-list/.NET/Create-numbered-list/Create-numbered-list.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Lists/Create-numbered-list/.NET/Create-numbered-list/Output/gitkeep.txt b/Lists/Create-numbered-list/.NET/Create-numbered-list/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Lists/Create-numbered-list/.NET/Create-numbered-list/Program.cs b/Lists/Create-numbered-list/.NET/Create-numbered-list/Program.cs index 7326ba7d..175b5f5f 100644 --- a/Lists/Create-numbered-list/.NET/Create-numbered-list/Program.cs +++ b/Lists/Create-numbered-list/.NET/Create-numbered-list/Program.cs @@ -47,5 +47,5 @@ paragraph.FirstLineIndent = -20; //Set the bullet character size. Here, 100 means 100% of its text. Possible values can range from 25 to 400. paragraph.ListFormat.Size = 100; -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); diff --git a/Lists/Create-picture-list/.NET/Create-picture-list/Create-picture-list.csproj b/Lists/Create-picture-list/.NET/Create-picture-list/Create-picture-list.csproj index 26ab230c..e980b933 100644 --- a/Lists/Create-picture-list/.NET/Create-picture-list/Create-picture-list.csproj +++ b/Lists/Create-picture-list/.NET/Create-picture-list/Create-picture-list.csproj @@ -12,4 +12,13 @@ + + + Always + + + Always + + + diff --git a/Lists/Create-picture-list/.NET/Create-picture-list/Output/gitkeep.txt b/Lists/Create-picture-list/.NET/Create-picture-list/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Lists/Create-picture-list/.NET/Create-picture-list/Program.cs b/Lists/Create-picture-list/.NET/Create-picture-list/Program.cs index 912daf2e..116a0553 100644 --- a/Lists/Create-picture-list/.NET/Create-picture-list/Program.cs +++ b/Lists/Create-picture-list/.NET/Create-picture-list/Program.cs @@ -8,7 +8,7 @@ IShape textBoxShape = slide.AddTextBox(65, 140, 410, 270); //Get a picture as stream. -using FileStream pictureStream = new(@"../../../Data/Image.jpg", FileMode.Open); +using FileStream pictureStream = new(Path.GetFullPath(@"Data/Image.jpg"), FileMode.Open); //Add a new paragraph with the text in the left hand side textbox. IParagraph paragraph = textBoxShape.TextBody.AddParagraph("AdventureWorks Cycles, the fictitious company on which the AdventureWorks sample databases are based, is a large, multinational manufacturing company."); //Set the list type as Numbered. @@ -35,5 +35,5 @@ //Set the hanging value. paragraph.FirstLineIndent = -20; //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file From 9d0f51a43765708bd327de71a3d5ebe3a6c0b5a4 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Tue, 20 Aug 2024 19:06:43 +0530 Subject: [PATCH 10/19] Comments --- .../Add-comments-in-PowerPoint.csproj | 6 ++++++ .../.NET/Add-comments-in-PowerPoint/Output/gitkeep.txt | 0 .../.NET/Add-comments-in-PowerPoint/Program.cs | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Output/gitkeep.txt diff --git a/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Add-comments-in-PowerPoint.csproj b/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Add-comments-in-PowerPoint.csproj index 800dfdb2..37c560e0 100644 --- a/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Add-comments-in-PowerPoint.csproj +++ b/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Add-comments-in-PowerPoint.csproj @@ -12,4 +12,10 @@ + + + Always + + + diff --git a/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Output/gitkeep.txt b/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Output/gitkeep.txt new file mode 100644 index 00000000..e69de29b diff --git a/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Program.cs b/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Program.cs index 49e7d6f2..b739ff96 100644 --- a/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Program.cs +++ b/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Program.cs @@ -7,5 +7,5 @@ //Add a comment to the slide. slide.Comments.Add(10, 10, "Author1", "A1", "Can we change the font size to 20?", DateTime.Now); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"../../../Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); \ No newline at end of file From ac895d3a8b72e2b9cc5274a03f58e3048112efb3 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:11:43 +0530 Subject: [PATCH 11/19] Animations --- .../Add-animation-effect-to-PowerPoint-shapes.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Add-animation-to-PowerPoint-text.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Add-exit-animation-effect/Add-exit-animation-effect.csproj | 2 +- .../Add-exit-animation-effect/Output/{gitkeep.txt => .gitkeep} | 0 .../Add-interactive-animation/Add-interactive-animation.csproj | 2 +- .../Add-interactive-animation/Output/{gitkeep.txt => .gitkeep} | 0 .../Create-custom-path-animation-effect.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Modify-animation-effect-sub-type.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Modify-animation-effect-timing.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Modify-existing-animation-effect.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Remove-animation-effect/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Remove-animation-effect/Remove-animation-effect.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Reordering-animation-effects.csproj | 2 +- 20 files changed, 10 insertions(+), 10 deletions(-) rename Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Add-interactive-animation/.NET/Add-interactive-animation/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Remove-animation-effect/.NET/Remove-animation-effect/Output/{gitkeep.txt => .gitkeep} (100%) rename Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Add-animation-effect-to-PowerPoint-shapes.csproj b/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Add-animation-effect-to-PowerPoint-shapes.csproj index 4840e8ae..317a2e6e 100644 --- a/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Add-animation-effect-to-PowerPoint-shapes.csproj +++ b/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Add-animation-effect-to-PowerPoint-shapes.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Output/gitkeep.txt b/Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Output/.gitkeep similarity index 100% rename from Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Output/gitkeep.txt rename to Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes/Output/.gitkeep diff --git a/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Add-animation-to-PowerPoint-text.csproj b/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Add-animation-to-PowerPoint-text.csproj index 01a59954..65a17407 100644 --- a/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Add-animation-to-PowerPoint-text.csproj +++ b/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Add-animation-to-PowerPoint-text.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Output/gitkeep.txt b/Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Output/.gitkeep similarity index 100% rename from Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Output/gitkeep.txt rename to Animations/Add-animation-to-PowerPoint-text/.NET/Add-animation-to-PowerPoint-text/Output/.gitkeep diff --git a/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Add-exit-animation-effect.csproj b/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Add-exit-animation-effect.csproj index 438cb837..e9c31dac 100644 --- a/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Add-exit-animation-effect.csproj +++ b/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Add-exit-animation-effect.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Output/gitkeep.txt b/Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Output/.gitkeep similarity index 100% rename from Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Output/gitkeep.txt rename to Animations/Add-exit-animation-effect/.NET/Add-exit-animation-effect/Output/.gitkeep diff --git a/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Add-interactive-animation.csproj b/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Add-interactive-animation.csproj index 46def146..151c713a 100644 --- a/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Add-interactive-animation.csproj +++ b/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Add-interactive-animation.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Output/gitkeep.txt b/Animations/Add-interactive-animation/.NET/Add-interactive-animation/Output/.gitkeep similarity index 100% rename from Animations/Add-interactive-animation/.NET/Add-interactive-animation/Output/gitkeep.txt rename to Animations/Add-interactive-animation/.NET/Add-interactive-animation/Output/.gitkeep diff --git a/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Create-custom-path-animation-effect.csproj b/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Create-custom-path-animation-effect.csproj index c07b853f..fd001641 100644 --- a/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Create-custom-path-animation-effect.csproj +++ b/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Create-custom-path-animation-effect.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Output/gitkeep.txt b/Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Output/.gitkeep similarity index 100% rename from Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Output/gitkeep.txt rename to Animations/Create-custom-path-animation-effect/.NET/Create-custom-path-animation-effect/Output/.gitkeep diff --git a/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Modify-animation-effect-sub-type.csproj b/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Modify-animation-effect-sub-type.csproj index a68e34e5..996970fe 100644 --- a/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Modify-animation-effect-sub-type.csproj +++ b/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Modify-animation-effect-sub-type.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Output/gitkeep.txt b/Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Output/.gitkeep similarity index 100% rename from Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Output/gitkeep.txt rename to Animations/Modify-animation-effect-sub-type/.NET/Modify-animation-effect-sub-type/Output/.gitkeep diff --git a/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Modify-animation-effect-timing.csproj b/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Modify-animation-effect-timing.csproj index 3eb5f4b6..cdaf4134 100644 --- a/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Modify-animation-effect-timing.csproj +++ b/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Modify-animation-effect-timing.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Output/gitkeep.txt b/Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Output/.gitkeep similarity index 100% rename from Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Output/gitkeep.txt rename to Animations/Modify-animation-effect-timing/.NET/Modify-animation-effect-timing/Output/.gitkeep diff --git a/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Modify-existing-animation-effect.csproj b/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Modify-existing-animation-effect.csproj index 25255d68..2465dba7 100644 --- a/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Modify-existing-animation-effect.csproj +++ b/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Modify-existing-animation-effect.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Output/gitkeep.txt b/Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Output/.gitkeep similarity index 100% rename from Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Output/gitkeep.txt rename to Animations/Modify-existing-animation-effect/.NET/Modify-existing-animation-effect/Output/.gitkeep diff --git a/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Output/gitkeep.txt b/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Output/.gitkeep similarity index 100% rename from Animations/Remove-animation-effect/.NET/Remove-animation-effect/Output/gitkeep.txt rename to Animations/Remove-animation-effect/.NET/Remove-animation-effect/Output/.gitkeep diff --git a/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Remove-animation-effect.csproj b/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Remove-animation-effect.csproj index 05bb13ff..34ca0f2c 100644 --- a/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Remove-animation-effect.csproj +++ b/Animations/Remove-animation-effect/.NET/Remove-animation-effect/Remove-animation-effect.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Output/gitkeep.txt b/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Output/.gitkeep similarity index 100% rename from Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Output/gitkeep.txt rename to Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Output/.gitkeep diff --git a/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Reordering-animation-effects.csproj b/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Reordering-animation-effects.csproj index 7b701fa2..89585dc3 100644 --- a/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Reordering-animation-effects.csproj +++ b/Animations/Reordering-animation-effects/.NET/Reordering-animation-effects/Reordering-animation-effects.csproj @@ -16,7 +16,7 @@ Always - + Always From 79330f1cf2d60fe62a221a7857f1d416a412dc87 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:19:57 +0530 Subject: [PATCH 12/19] Charts --- .../.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj | 2 +- .../Apply-chart-3D-formats/Output/{gitkeep.txt => .gitkeep} | 0 .../Change-text-for-data-label-in-chart.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Change-the-slice-color-of-pie-chart.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj | 2 +- .../Convert-Chart-to-Image/Output/{gitkeep.txt => .gitkeep} | 0 .../Create-Box-And-Whisker-chart.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-Histogram-chart/Create-Histogram-chart.csproj | 2 +- .../Create-Histogram-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-Pareto-chart/Create-Pareto-chart.csproj | 2 +- .../.NET/Create-Pareto-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj | 2 +- .../Create-PowerPoint-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj | 2 +- .../Create-Waterfall-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../Create-chart-and-save-as-image.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Create-chart-from-excel-sheet.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-customized-chart/Create-customized-chart.csproj | 2 +- .../Create-customized-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-funnel-chart/Create-funnel-chart.csproj | 2 +- .../.NET/Create-funnel-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-scatter-chart/Create-scatter-chart.csproj | 2 +- .../.NET/Create-scatter-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj | 2 +- .../.NET/Edit-chart-data/Output/{gitkeep.txt => .gitkeep} | 0 Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj | 2 +- .../.NET/Format-Axis/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Format-Chart-Area/Format-Chart-Area.csproj | 2 +- .../.NET/Format-Chart-Area/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Format-Data-Labels/Format-Data-Labels.csproj | 2 +- .../.NET/Format-Data-Labels/Output/{gitkeep.txt => .gitkeep} | 0 Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj | 2 +- .../.NET/Format-Legend/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Format-Plot-Area/Format-Plot-Area.csproj | 2 +- .../.NET/Format-Plot-Area/Output/{gitkeep.txt => .gitkeep} | 0 .../Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj | 2 +- .../.NET/Add-Drop-Lines/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj | 2 +- .../.NET/Add-High-Low-Lines/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Add-Series-Lines/Add-Series-Lines.csproj | 2 +- .../.NET/Add-Series-Lines/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj | 2 +- .../.NET/Chart-Bar-Spacing/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj | 2 +- .../.NET/Explode-Pie-Chart/Output/{gitkeep.txt => .gitkeep} | 0 .../Format-Series/.NET/Format-Series/Format-Series.csproj | 2 +- .../.NET/Format-Series/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Format-Chart-Title/Format-Chart-Title.csproj | 2 +- .../.NET/Format-Chart-Title/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Modify-chart-appearance/Modify-chart-appearance.csproj | 2 +- .../Modify-chart-appearance/Output/{gitkeep.txt => .gitkeep} | 0 .../Modify-chart-legend-and-plot-areas.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Positioning-chart-elements/Output/{gitkeep.txt => .gitkeep} | 0 .../Positioning-chart-elements.csproj | 2 +- .../Refresh-PowerPoint-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj | 2 +- .../.NET/Remove-existing-chart/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Remove-existing-chart/Remove-existing-chart.csproj | 2 +- .../.NET/Remove-legend/Output/{gitkeep.txt => .gitkeep} | 0 Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj | 2 +- .../.NET/Show-Leader-Lines/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Show-Leader-Lines/Show-Leader-Lines.csproj | 2 +- 68 files changed, 34 insertions(+), 34 deletions(-) rename Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-customized-chart/.NET/Create-customized-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-funnel-chart/.NET/Create-funnel-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Create-scatter-chart/.NET/Create-scatter-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Edit-chart-data/.NET/Edit-chart-data/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Axis/.NET/Format-Axis/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Chart-Area/.NET/Format-Chart-Area/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Data-Labels/.NET/Format-Data-Labels/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Legend/.NET/Format-Legend/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Plot-Area/.NET/Format-Plot-Area/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format-Series/Format-Series/.NET/Format-Series/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Format_Chart_Title/.NET/Format-Chart-Title/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Remove-existing-chart/.NET/Remove-existing-chart/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Remove-legend/.NET/Remove-legend/Output/{gitkeep.txt => .gitkeep} (100%) rename Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj b/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj index fd65e8da..2bdef1b0 100644 --- a/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj +++ b/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Apply-chart-3D-formats.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Output/gitkeep.txt b/Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Output/.gitkeep similarity index 100% rename from Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Output/gitkeep.txt rename to Charts/Apply-chart-3D-formats/.NET/Apply-chart-3D-formats/Output/.gitkeep diff --git a/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Change-text-for-data-label-in-chart.csproj b/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Change-text-for-data-label-in-chart.csproj index 84734f77..8737ea19 100644 --- a/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Change-text-for-data-label-in-chart.csproj +++ b/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Change-text-for-data-label-in-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Output/gitkeep.txt b/Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Output/.gitkeep similarity index 100% rename from Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Output/gitkeep.txt rename to Charts/Change-text-for-data-label-in-chart/.NET/Change-text-for-data-label-in-chart/Output/.gitkeep diff --git a/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Change-the-slice-color-of-pie-chart.csproj b/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Change-the-slice-color-of-pie-chart.csproj index 1ca38944..dec09446 100644 --- a/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Change-the-slice-color-of-pie-chart.csproj +++ b/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Change-the-slice-color-of-pie-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Output/gitkeep.txt b/Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Output/.gitkeep similarity index 100% rename from Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Output/gitkeep.txt rename to Charts/Change-the-slice-color-of-pie-chart/.NET/Change-the-slice-color-of-pie-chart/Output/.gitkeep diff --git a/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj b/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj index 4c4101d6..8f52d919 100644 --- a/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj +++ b/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Convert-Chart-to-Image.csproj @@ -17,7 +17,7 @@ Always - + Always diff --git a/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Output/gitkeep.txt b/Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Output/.gitkeep similarity index 100% rename from Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Output/gitkeep.txt rename to Charts/Convert-chart-to-image/.NET/Convert-Chart-to-Image/Output/.gitkeep diff --git a/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Create-Box-And-Whisker-chart.csproj b/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Create-Box-And-Whisker-chart.csproj index a2a7fc5e..1c8f8f94 100644 --- a/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Create-Box-And-Whisker-chart.csproj +++ b/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Create-Box-And-Whisker-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Output/gitkeep.txt b/Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Output/.gitkeep similarity index 100% rename from Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Output/gitkeep.txt rename to Charts/Create-Box-And-Whisker-chart/.NET/Create-Box-And-Whisker-chart/Output/.gitkeep diff --git a/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Create-Histogram-chart.csproj b/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Create-Histogram-chart.csproj index b5bb9e66..40dd431e 100644 --- a/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Create-Histogram-chart.csproj +++ b/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Create-Histogram-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Output/gitkeep.txt b/Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Output/.gitkeep similarity index 100% rename from Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Output/gitkeep.txt rename to Charts/Create-Histogram-chart/.NET/Create-Histogram-chart/Output/.gitkeep diff --git a/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Create-Pareto-chart.csproj b/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Create-Pareto-chart.csproj index 6054c253..1bf21a0f 100644 --- a/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Create-Pareto-chart.csproj +++ b/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Create-Pareto-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Output/gitkeep.txt b/Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Output/.gitkeep similarity index 100% rename from Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Output/gitkeep.txt rename to Charts/Create-Pareto-chart/.NET/Create-Pareto-chart/Output/.gitkeep diff --git a/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj b/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj index 62460179..eb417c67 100644 --- a/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj +++ b/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Create-PowerPoint-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Output/gitkeep.txt b/Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Output/.gitkeep similarity index 100% rename from Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Output/gitkeep.txt rename to Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart/Output/.gitkeep diff --git a/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj b/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj index ffac529d..d94b50be 100644 --- a/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj +++ b/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Create-Waterfall-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Output/gitkeep.txt b/Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Output/.gitkeep similarity index 100% rename from Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Output/gitkeep.txt rename to Charts/Create-Waterfall-chart/.NET/Create-Waterfall-chart/Output/.gitkeep diff --git a/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Create-chart-and-save-as-image.csproj b/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Create-chart-and-save-as-image.csproj index 611c0d94..655adcb3 100644 --- a/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Create-chart-and-save-as-image.csproj +++ b/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Create-chart-and-save-as-image.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Output/gitkeep.txt b/Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Output/.gitkeep similarity index 100% rename from Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Output/gitkeep.txt rename to Charts/Create-chart-and-save-as-image/.NET/Create-chart-and-save-as-image/Output/.gitkeep diff --git a/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Create-chart-from-excel-sheet.csproj b/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Create-chart-from-excel-sheet.csproj index 498ef871..a4eda97c 100644 --- a/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Create-chart-from-excel-sheet.csproj +++ b/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Create-chart-from-excel-sheet.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Output/gitkeep.txt b/Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Output/.gitkeep similarity index 100% rename from Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Output/gitkeep.txt rename to Charts/Create-chart-from-excel-sheet/.NET/Create-chart-from-excel-sheet/Output/.gitkeep diff --git a/Charts/Create-customized-chart/.NET/Create-customized-chart/Create-customized-chart.csproj b/Charts/Create-customized-chart/.NET/Create-customized-chart/Create-customized-chart.csproj index 5804046d..1aa1afe1 100644 --- a/Charts/Create-customized-chart/.NET/Create-customized-chart/Create-customized-chart.csproj +++ b/Charts/Create-customized-chart/.NET/Create-customized-chart/Create-customized-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-customized-chart/.NET/Create-customized-chart/Output/gitkeep.txt b/Charts/Create-customized-chart/.NET/Create-customized-chart/Output/.gitkeep similarity index 100% rename from Charts/Create-customized-chart/.NET/Create-customized-chart/Output/gitkeep.txt rename to Charts/Create-customized-chart/.NET/Create-customized-chart/Output/.gitkeep diff --git a/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Create-funnel-chart.csproj b/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Create-funnel-chart.csproj index cf7a6c50..5b961451 100644 --- a/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Create-funnel-chart.csproj +++ b/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Create-funnel-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Output/gitkeep.txt b/Charts/Create-funnel-chart/.NET/Create-funnel-chart/Output/.gitkeep similarity index 100% rename from Charts/Create-funnel-chart/.NET/Create-funnel-chart/Output/gitkeep.txt rename to Charts/Create-funnel-chart/.NET/Create-funnel-chart/Output/.gitkeep diff --git a/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Create-scatter-chart.csproj b/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Create-scatter-chart.csproj index 62d7df17..f9e838cf 100644 --- a/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Create-scatter-chart.csproj +++ b/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Create-scatter-chart.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Output/gitkeep.txt b/Charts/Create-scatter-chart/.NET/Create-scatter-chart/Output/.gitkeep similarity index 100% rename from Charts/Create-scatter-chart/.NET/Create-scatter-chart/Output/gitkeep.txt rename to Charts/Create-scatter-chart/.NET/Create-scatter-chart/Output/.gitkeep diff --git a/Charts/Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj b/Charts/Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj index ff19f96e..5c0003b0 100644 --- a/Charts/Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj +++ b/Charts/Edit-chart-data/.NET/Edit-chart-data/Edit-chart-data.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Edit-chart-data/.NET/Edit-chart-data/Output/gitkeep.txt b/Charts/Edit-chart-data/.NET/Edit-chart-data/Output/.gitkeep similarity index 100% rename from Charts/Edit-chart-data/.NET/Edit-chart-data/Output/gitkeep.txt rename to Charts/Edit-chart-data/.NET/Edit-chart-data/Output/.gitkeep diff --git a/Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj b/Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj index 79e38c65..992c22b2 100644 --- a/Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj +++ b/Charts/Format-Axis/.NET/Format-Axis/Format-Axis.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Axis/.NET/Format-Axis/Output/gitkeep.txt b/Charts/Format-Axis/.NET/Format-Axis/Output/.gitkeep similarity index 100% rename from Charts/Format-Axis/.NET/Format-Axis/Output/gitkeep.txt rename to Charts/Format-Axis/.NET/Format-Axis/Output/.gitkeep diff --git a/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Format-Chart-Area.csproj b/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Format-Chart-Area.csproj index 5e5c5b57..ed884e24 100644 --- a/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Format-Chart-Area.csproj +++ b/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Format-Chart-Area.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Output/gitkeep.txt b/Charts/Format-Chart-Area/.NET/Format-Chart-Area/Output/.gitkeep similarity index 100% rename from Charts/Format-Chart-Area/.NET/Format-Chart-Area/Output/gitkeep.txt rename to Charts/Format-Chart-Area/.NET/Format-Chart-Area/Output/.gitkeep diff --git a/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Format-Data-Labels.csproj b/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Format-Data-Labels.csproj index ba617f91..684fe24c 100644 --- a/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Format-Data-Labels.csproj +++ b/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Format-Data-Labels.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Output/gitkeep.txt b/Charts/Format-Data-Labels/.NET/Format-Data-Labels/Output/.gitkeep similarity index 100% rename from Charts/Format-Data-Labels/.NET/Format-Data-Labels/Output/gitkeep.txt rename to Charts/Format-Data-Labels/.NET/Format-Data-Labels/Output/.gitkeep diff --git a/Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj b/Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj index 56328cc8..836a5699 100644 --- a/Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj +++ b/Charts/Format-Legend/.NET/Format-Legend/Format-Legend.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Legend/.NET/Format-Legend/Output/gitkeep.txt b/Charts/Format-Legend/.NET/Format-Legend/Output/.gitkeep similarity index 100% rename from Charts/Format-Legend/.NET/Format-Legend/Output/gitkeep.txt rename to Charts/Format-Legend/.NET/Format-Legend/Output/.gitkeep diff --git a/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Format-Plot-Area.csproj b/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Format-Plot-Area.csproj index 65d6bd4c..a98dee7b 100644 --- a/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Format-Plot-Area.csproj +++ b/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Format-Plot-Area.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Output/gitkeep.txt b/Charts/Format-Plot-Area/.NET/Format-Plot-Area/Output/.gitkeep similarity index 100% rename from Charts/Format-Plot-Area/.NET/Format-Plot-Area/Output/gitkeep.txt rename to Charts/Format-Plot-Area/.NET/Format-Plot-Area/Output/.gitkeep diff --git a/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj b/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj index e067f005..209a1c3e 100644 --- a/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj +++ b/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Add-Drop-Lines.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Output/gitkeep.txt b/Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Output/.gitkeep similarity index 100% rename from Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Output/gitkeep.txt rename to Charts/Format-Series/Add-Drop-Lines/.NET/Add-Drop-Lines/Output/.gitkeep diff --git a/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj b/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj index 09f7127d..1d087dad 100644 --- a/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj +++ b/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Add-High-Low-Lines.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Output/gitkeep.txt b/Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Output/.gitkeep similarity index 100% rename from Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Output/gitkeep.txt rename to Charts/Format-Series/Add-High-Low-Lines/.NET/Add-High-Low-Lines/Output/.gitkeep diff --git a/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Add-Series-Lines.csproj b/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Add-Series-Lines.csproj index 0fe0c97c..7600e17a 100644 --- a/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Add-Series-Lines.csproj +++ b/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Add-Series-Lines.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Output/gitkeep.txt b/Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Output/.gitkeep similarity index 100% rename from Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Output/gitkeep.txt rename to Charts/Format-Series/Add-Series-Lines/.NET/Add-Series-Lines/Output/.gitkeep diff --git a/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj b/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj index 3c363840..c81782e7 100644 --- a/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj +++ b/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Chart-Bar-Spacing.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Output/gitkeep.txt b/Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Output/.gitkeep similarity index 100% rename from Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Output/gitkeep.txt rename to Charts/Format-Series/Chart-Bar-Spacing/.NET/Chart-Bar-Spacing/Output/.gitkeep diff --git a/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj b/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj index ad3d87c4..bce5148a 100644 --- a/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj +++ b/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Explode-Pie-Chart.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Output/gitkeep.txt b/Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Output/.gitkeep similarity index 100% rename from Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Output/gitkeep.txt rename to Charts/Format-Series/Explode-Pie-Chart/.NET/Explode-Pie-Chart/Output/.gitkeep diff --git a/Charts/Format-Series/Format-Series/.NET/Format-Series/Format-Series.csproj b/Charts/Format-Series/Format-Series/.NET/Format-Series/Format-Series.csproj index 91dce6e7..bbd50361 100644 --- a/Charts/Format-Series/Format-Series/.NET/Format-Series/Format-Series.csproj +++ b/Charts/Format-Series/Format-Series/.NET/Format-Series/Format-Series.csproj @@ -14,7 +14,7 @@ Always - + Always diff --git a/Charts/Format-Series/Format-Series/.NET/Format-Series/Output/gitkeep.txt b/Charts/Format-Series/Format-Series/.NET/Format-Series/Output/.gitkeep similarity index 100% rename from Charts/Format-Series/Format-Series/.NET/Format-Series/Output/gitkeep.txt rename to Charts/Format-Series/Format-Series/.NET/Format-Series/Output/.gitkeep diff --git a/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Format-Chart-Title.csproj b/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Format-Chart-Title.csproj index 763d7db6..91221770 100644 --- a/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Format-Chart-Title.csproj +++ b/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Format-Chart-Title.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Output/gitkeep.txt b/Charts/Format_Chart_Title/.NET/Format-Chart-Title/Output/.gitkeep similarity index 100% rename from Charts/Format_Chart_Title/.NET/Format-Chart-Title/Output/gitkeep.txt rename to Charts/Format_Chart_Title/.NET/Format-Chart-Title/Output/.gitkeep diff --git a/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Modify-chart-appearance.csproj b/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Modify-chart-appearance.csproj index 05559bf5..4f3d577f 100644 --- a/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Modify-chart-appearance.csproj +++ b/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Modify-chart-appearance.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Output/gitkeep.txt b/Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Output/.gitkeep similarity index 100% rename from Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Output/gitkeep.txt rename to Charts/Modify-chart-appearance/.NET/Modify-chart-appearance/Output/.gitkeep diff --git a/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Modify-chart-legend-and-plot-areas.csproj b/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Modify-chart-legend-and-plot-areas.csproj index fb8e5ede..24a7aaa3 100644 --- a/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Modify-chart-legend-and-plot-areas.csproj +++ b/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Modify-chart-legend-and-plot-areas.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Output/gitkeep.txt b/Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Output/.gitkeep similarity index 100% rename from Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Output/gitkeep.txt rename to Charts/Modify-chart-legend-and-plot-areas/.NET/Modify-chart-legend-and-plot-areas/Output/.gitkeep diff --git a/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Output/gitkeep.txt b/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Output/.gitkeep similarity index 100% rename from Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Output/gitkeep.txt rename to Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Output/.gitkeep diff --git a/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Positioning-chart-elements.csproj b/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Positioning-chart-elements.csproj index dd33d4f1..2e322db3 100644 --- a/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Positioning-chart-elements.csproj +++ b/Charts/Positioning-chart-elements/.NET/Positioning-chart-elements/Positioning-chart-elements.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Output/gitkeep.txt b/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Output/.gitkeep similarity index 100% rename from Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Output/gitkeep.txt rename to Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Output/.gitkeep diff --git a/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj b/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj index 8df533a6..58e3cdad 100644 --- a/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj +++ b/Charts/Refresh-PowerPoint-chart/.NET/Refresh-PowerPoint-chart/Refresh-PowerPoint-chart.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Output/gitkeep.txt b/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Output/.gitkeep similarity index 100% rename from Charts/Remove-existing-chart/.NET/Remove-existing-chart/Output/gitkeep.txt rename to Charts/Remove-existing-chart/.NET/Remove-existing-chart/Output/.gitkeep diff --git a/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Remove-existing-chart.csproj b/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Remove-existing-chart.csproj index 98a7dd95..30a2d2ad 100644 --- a/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Remove-existing-chart.csproj +++ b/Charts/Remove-existing-chart/.NET/Remove-existing-chart/Remove-existing-chart.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Charts/Remove-legend/.NET/Remove-legend/Output/gitkeep.txt b/Charts/Remove-legend/.NET/Remove-legend/Output/.gitkeep similarity index 100% rename from Charts/Remove-legend/.NET/Remove-legend/Output/gitkeep.txt rename to Charts/Remove-legend/.NET/Remove-legend/Output/.gitkeep diff --git a/Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj b/Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj index cbde4b85..6c6b8767 100644 --- a/Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj +++ b/Charts/Remove-legend/.NET/Remove-legend/Remove-legend.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Output/gitkeep.txt b/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Output/.gitkeep similarity index 100% rename from Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Output/gitkeep.txt rename to Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Output/.gitkeep diff --git a/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Show-Leader-Lines.csproj b/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Show-Leader-Lines.csproj index 9b80ae39..865a8012 100644 --- a/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Show-Leader-Lines.csproj +++ b/Charts/Show-Leader-Lines/.NET/Show-Leader-Lines/Show-Leader-Lines.csproj @@ -14,7 +14,7 @@ Always - + Always From 2348898430955541bfd9376ef49f236f60321f45 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:21:48 +0530 Subject: [PATCH 13/19] Comments --- .../Add-comments-in-PowerPoint.csproj | 2 +- .../Add-comments-in-PowerPoint/Output/{gitkeep.txt => .gitkeep} | 0 .../Add-reply-comment-in-PowerPoint.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Delete-comment-by-position.csproj | 2 +- .../Delete-comment-by-position/Output/{gitkeep.txt => .gitkeep} | 0 .../Delete-comment/.NET/Delete-comment/Delete-comment.csproj | 2 +- .../.NET/Delete-comment/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Modify-comment-author/Modify-comment-author.csproj | 2 +- .../.NET/Modify-comment-author/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Modify-comment-content/Modify-comment-content.csproj | 2 +- .../Modify-comment-content/Output/{gitkeep.txt => .gitkeep} | 0 12 files changed, 6 insertions(+), 6 deletions(-) rename Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Output/{gitkeep.txt => .gitkeep} (100%) rename Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Output/{gitkeep.txt => .gitkeep} (100%) rename Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Output/{gitkeep.txt => .gitkeep} (100%) rename Comments/Delete-comment/.NET/Delete-comment/Output/{gitkeep.txt => .gitkeep} (100%) rename Comments/Modify-comment-author/.NET/Modify-comment-author/Output/{gitkeep.txt => .gitkeep} (100%) rename Comments/Modify-comment-content/.NET/Modify-comment-content/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Add-comments-in-PowerPoint.csproj b/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Add-comments-in-PowerPoint.csproj index 37c560e0..9e92428a 100644 --- a/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Add-comments-in-PowerPoint.csproj +++ b/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Add-comments-in-PowerPoint.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Output/gitkeep.txt b/Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Output/.gitkeep similarity index 100% rename from Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Output/gitkeep.txt rename to Comments/Add-comments-in-PowerPoint/.NET/Add-comments-in-PowerPoint/Output/.gitkeep diff --git a/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Add-reply-comment-in-PowerPoint.csproj b/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Add-reply-comment-in-PowerPoint.csproj index 204955b7..dd950c24 100644 --- a/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Add-reply-comment-in-PowerPoint.csproj +++ b/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Add-reply-comment-in-PowerPoint.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Output/gitkeep.txt b/Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Output/.gitkeep similarity index 100% rename from Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Output/gitkeep.txt rename to Comments/Add-reply-comment-in-PowerPoint/.NET/Add-reply-comment-in-PowerPoint/Output/.gitkeep diff --git a/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Delete-comment-by-position.csproj b/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Delete-comment-by-position.csproj index 2f02bb2a..900deabc 100644 --- a/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Delete-comment-by-position.csproj +++ b/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Delete-comment-by-position.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Output/gitkeep.txt b/Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Output/.gitkeep similarity index 100% rename from Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Output/gitkeep.txt rename to Comments/Delete-comment-by-position/.NET/Delete-comment-by-position/Output/.gitkeep diff --git a/Comments/Delete-comment/.NET/Delete-comment/Delete-comment.csproj b/Comments/Delete-comment/.NET/Delete-comment/Delete-comment.csproj index f387efe7..9fa3bdcd 100644 --- a/Comments/Delete-comment/.NET/Delete-comment/Delete-comment.csproj +++ b/Comments/Delete-comment/.NET/Delete-comment/Delete-comment.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Comments/Delete-comment/.NET/Delete-comment/Output/gitkeep.txt b/Comments/Delete-comment/.NET/Delete-comment/Output/.gitkeep similarity index 100% rename from Comments/Delete-comment/.NET/Delete-comment/Output/gitkeep.txt rename to Comments/Delete-comment/.NET/Delete-comment/Output/.gitkeep diff --git a/Comments/Modify-comment-author/.NET/Modify-comment-author/Modify-comment-author.csproj b/Comments/Modify-comment-author/.NET/Modify-comment-author/Modify-comment-author.csproj index 2a7d3f77..22c91810 100644 --- a/Comments/Modify-comment-author/.NET/Modify-comment-author/Modify-comment-author.csproj +++ b/Comments/Modify-comment-author/.NET/Modify-comment-author/Modify-comment-author.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Comments/Modify-comment-author/.NET/Modify-comment-author/Output/gitkeep.txt b/Comments/Modify-comment-author/.NET/Modify-comment-author/Output/.gitkeep similarity index 100% rename from Comments/Modify-comment-author/.NET/Modify-comment-author/Output/gitkeep.txt rename to Comments/Modify-comment-author/.NET/Modify-comment-author/Output/.gitkeep diff --git a/Comments/Modify-comment-content/.NET/Modify-comment-content/Modify-comment-content.csproj b/Comments/Modify-comment-content/.NET/Modify-comment-content/Modify-comment-content.csproj index a7602a3d..fbcb7be0 100644 --- a/Comments/Modify-comment-content/.NET/Modify-comment-content/Modify-comment-content.csproj +++ b/Comments/Modify-comment-content/.NET/Modify-comment-content/Modify-comment-content.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Comments/Modify-comment-content/.NET/Modify-comment-content/Output/gitkeep.txt b/Comments/Modify-comment-content/.NET/Modify-comment-content/Output/.gitkeep similarity index 100% rename from Comments/Modify-comment-content/.NET/Modify-comment-content/Output/gitkeep.txt rename to Comments/Modify-comment-content/.NET/Modify-comment-content/Output/.gitkeep From 84fcc88369bfadb902822585fadcfeab7be7c94b Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:23:14 +0530 Subject: [PATCH 14/19] Connectors --- .../Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj | 2 +- .../Add-PowerPoint-connectors/Output/{gitkeep.txt => .gitkeep} | 0 .../Add-single-point-connector.csproj | 2 +- .../Add-single-point-connector/Output/{gitkeep.txt => .gitkeep} | 0 .../Modify-existing-connector/Modify-existing-connector.csproj | 2 +- .../Modify-existing-connector/Output/{gitkeep.txt => .gitkeep} | 0 .../Output/{gitkeep.txt => .gitkeep} | 0 .../Remove-connector-from-shapes.csproj | 2 +- .../Update-connector-position/Output/{gitkeep.txt => .gitkeep} | 0 .../Update-connector-position/Update-connector-position.csproj | 2 +- 10 files changed, 5 insertions(+), 5 deletions(-) rename Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Output/{gitkeep.txt => .gitkeep} (100%) rename Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Output/{gitkeep.txt => .gitkeep} (100%) rename Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Output/{gitkeep.txt => .gitkeep} (100%) rename Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Output/{gitkeep.txt => .gitkeep} (100%) rename Connectors/Update-connector-position/.NET/Update-connector-position/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj b/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj index e50a0356..410d9c5d 100644 --- a/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj +++ b/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Add-PowerPoint-connectors.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Output/gitkeep.txt b/Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Output/.gitkeep similarity index 100% rename from Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Output/gitkeep.txt rename to Connectors/Add-PowerPoint-connectors/.NET/Add-PowerPoint-connectors/Output/.gitkeep diff --git a/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Add-single-point-connector.csproj b/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Add-single-point-connector.csproj index de58735f..4bec4d72 100644 --- a/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Add-single-point-connector.csproj +++ b/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Add-single-point-connector.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Output/gitkeep.txt b/Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Output/.gitkeep similarity index 100% rename from Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Output/gitkeep.txt rename to Connectors/Add-single-point-connector/.NET/Add-single-point-connector/Output/.gitkeep diff --git a/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Modify-existing-connector.csproj b/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Modify-existing-connector.csproj index 1cb4bb0f..4bc1e158 100644 --- a/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Modify-existing-connector.csproj +++ b/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Modify-existing-connector.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Output/gitkeep.txt b/Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Output/.gitkeep similarity index 100% rename from Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Output/gitkeep.txt rename to Connectors/Modify-existing-connector/.NET/Modify-existing-connector/Output/.gitkeep diff --git a/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Output/gitkeep.txt b/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Output/.gitkeep similarity index 100% rename from Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Output/gitkeep.txt rename to Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Output/.gitkeep diff --git a/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Remove-connector-from-shapes.csproj b/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Remove-connector-from-shapes.csproj index 51f6b01b..4ef17030 100644 --- a/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Remove-connector-from-shapes.csproj +++ b/Connectors/Remove-connector-from-shapes/.NET/Remove-connector-from-shapes/Remove-connector-from-shapes.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Connectors/Update-connector-position/.NET/Update-connector-position/Output/gitkeep.txt b/Connectors/Update-connector-position/.NET/Update-connector-position/Output/.gitkeep similarity index 100% rename from Connectors/Update-connector-position/.NET/Update-connector-position/Output/gitkeep.txt rename to Connectors/Update-connector-position/.NET/Update-connector-position/Output/.gitkeep diff --git a/Connectors/Update-connector-position/.NET/Update-connector-position/Update-connector-position.csproj b/Connectors/Update-connector-position/.NET/Update-connector-position/Update-connector-position.csproj index dacc52ed..d0e68f41 100644 --- a/Connectors/Update-connector-position/.NET/Update-connector-position/Update-connector-position.csproj +++ b/Connectors/Update-connector-position/.NET/Update-connector-position/Update-connector-position.csproj @@ -16,7 +16,7 @@ Always - + Always From e084901f5e0ea84657a50424da8889b4e2125695 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:26:02 +0530 Subject: [PATCH 15/19] Find and Replace --- .../Find-and-Replace-in-PowerPoint.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Find-and-Replace-in-PowerPoint-using-regex.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Find-and-highlight-in-PowerPoint.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Find-and-highlight-in-Powerpoint-using-regex.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Find-and-highlight-in-slide.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Find-and-replace-in-slide/Find-and-replace-in-slide.csproj | 2 +- .../Find-and-replace-in-slide/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Find-first-occurance/Find-first-occurance.csproj | 2 +- .../.NET/Find-first-occurance/Output/{gitkeep.txt => .gitkeep} | 0 Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj | 2 +- .../Match-case/.NET/Match-case/Output/{gitkeep.txt => .gitkeep} | 0 .../Output/{gitkeep.txt => .gitkeep} | 0 .../Replace-all-OLE-objects-with-text.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Replace-hyperlink-inside-smartart.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Replace-particular-image-with-text.csproj | 2 +- .../.NET/Whole-word-only/Output/{gitkeep.txt => .gitkeep} | 0 .../Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj | 2 +- 24 files changed, 12 insertions(+), 12 deletions(-) rename Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Match-case/.NET/Match-case/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Output/{gitkeep.txt => .gitkeep} (100%) rename Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Find-and-Replace-in-PowerPoint.csproj b/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Find-and-Replace-in-PowerPoint.csproj index 347a9b8d..b0c67791 100644 --- a/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Find-and-Replace-in-PowerPoint.csproj +++ b/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Find-and-Replace-in-PowerPoint.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Output/gitkeep.txt b/Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Output/gitkeep.txt rename to Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint/Output/.gitkeep diff --git a/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Find-and-Replace-in-PowerPoint-using-regex.csproj b/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Find-and-Replace-in-PowerPoint-using-regex.csproj index 9177cc25..f393f860 100644 --- a/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Find-and-Replace-in-PowerPoint-using-regex.csproj +++ b/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Find-and-Replace-in-PowerPoint-using-regex.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Output/gitkeep.txt b/Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Output/gitkeep.txt rename to Find-and-Replace/Find-and-Replace-in-Powerpoint-using-Regex/.NET/Find-and-Replace-in-PowerPoint-using-regex/Output/.gitkeep diff --git a/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Find-and-highlight-in-PowerPoint.csproj b/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Find-and-highlight-in-PowerPoint.csproj index dd4ddcaf..59e98115 100644 --- a/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Find-and-highlight-in-PowerPoint.csproj +++ b/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Find-and-highlight-in-PowerPoint.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Output/gitkeep.txt b/Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Output/gitkeep.txt rename to Find-and-Replace/Find-and-highlight-in-PowerPoint/.NET/Find-and-highlight-in-PowerPoint/Output/.gitkeep diff --git a/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Find-and-highlight-in-Powerpoint-using-regex.csproj b/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Find-and-highlight-in-Powerpoint-using-regex.csproj index 60de3fd0..2c91e3bd 100644 --- a/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Find-and-highlight-in-Powerpoint-using-regex.csproj +++ b/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Find-and-highlight-in-Powerpoint-using-regex.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Output/gitkeep.txt b/Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Output/gitkeep.txt rename to Find-and-Replace/Find-and-highlight-in-Powerpoint-using-Regex/.NET/Find-and-highlight-in-Powerpoint-using-regex/Output/.gitkeep diff --git a/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Find-and-highlight-in-slide.csproj b/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Find-and-highlight-in-slide.csproj index 0546177f..6961b526 100644 --- a/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Find-and-highlight-in-slide.csproj +++ b/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Find-and-highlight-in-slide.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Output/gitkeep.txt b/Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Output/gitkeep.txt rename to Find-and-Replace/Find-and-highlight-in-slide/.NET/Find-and-highlight-in-slide/Output/.gitkeep diff --git a/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Find-and-replace-in-slide.csproj b/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Find-and-replace-in-slide.csproj index 1711ad55..96e65abb 100644 --- a/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Find-and-replace-in-slide.csproj +++ b/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Find-and-replace-in-slide.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Output/gitkeep.txt b/Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Output/gitkeep.txt rename to Find-and-Replace/Find-and-replace-in-slide/.NET/Find-and-replace-in-slide/Output/.gitkeep diff --git a/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Find-first-occurance.csproj b/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Find-first-occurance.csproj index 605c3928..dbb5c92f 100644 --- a/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Find-first-occurance.csproj +++ b/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Find-first-occurance.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Output/gitkeep.txt b/Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Output/gitkeep.txt rename to Find-and-Replace/Find-first-occurance/.NET/Find-first-occurance/Output/.gitkeep diff --git a/Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj b/Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj index ba1e2dd6..7c4c20a6 100644 --- a/Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj +++ b/Find-and-Replace/Match-case/.NET/Match-case/Match-case.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Match-case/.NET/Match-case/Output/gitkeep.txt b/Find-and-Replace/Match-case/.NET/Match-case/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Match-case/.NET/Match-case/Output/gitkeep.txt rename to Find-and-Replace/Match-case/.NET/Match-case/Output/.gitkeep diff --git a/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Output/gitkeep.txt b/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Output/gitkeep.txt rename to Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Output/.gitkeep diff --git a/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Replace-all-OLE-objects-with-text.csproj b/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Replace-all-OLE-objects-with-text.csproj index b77ea20a..d77522b3 100644 --- a/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Replace-all-OLE-objects-with-text.csproj +++ b/Find-and-Replace/Replace-all-OLE-objects-with-text/.NET/Replace-all-OLE-objects-with-text/Replace-all-OLE-objects-with-text.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Output/gitkeep.txt b/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Output/gitkeep.txt rename to Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Output/.gitkeep diff --git a/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Replace-hyperlink-inside-smartart.csproj b/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Replace-hyperlink-inside-smartart.csproj index 8a215065..4f778c6b 100644 --- a/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Replace-hyperlink-inside-smartart.csproj +++ b/Find-and-Replace/Replace-hyperlink-inside-smartart/.NET/Replace-hyperlink-inside-smartart/Replace-hyperlink-inside-smartart.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Output/gitkeep.txt b/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Output/gitkeep.txt rename to Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Output/.gitkeep diff --git a/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Replace-particular-image-with-text.csproj b/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Replace-particular-image-with-text.csproj index dc243917..d1c36824 100644 --- a/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Replace-particular-image-with-text.csproj +++ b/Find-and-Replace/Replace-particular-image-with-text/.NET/Replace-particular-image-with-text/Replace-particular-image-with-text.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Output/gitkeep.txt b/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Output/.gitkeep similarity index 100% rename from Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Output/gitkeep.txt rename to Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Output/.gitkeep diff --git a/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj b/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj index 21fc0310..cefe8c9d 100644 --- a/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj +++ b/Find-and-Replace/Whole-word-only/.NET/Whole-word-only/Whole-word-only.csproj @@ -16,7 +16,7 @@ Always - + Always From f91c6a51840a702978fe8962fa7cf6ab7de2fbd3 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:28:39 +0530 Subject: [PATCH 16/19] Headers and Footers --- .../Add-date-and-time-in-PowerPoint-slide.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj | 2 +- .../Add-footer-in-PowerPoint/Output/{gitkeep.txt => .gitkeep} | 0 .../Add-footer-in-master-and-layout-slides.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Add-headers-and-footers-in-Notes.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Add-slide-number-in-PowerPoint-slide.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Edit-footer-text/Edit-footer-text.csproj | 2 +- .../.NET/Edit-footer-text/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Edit-header-text/Edit-header-text.csproj | 2 +- .../.NET/Edit-header-text/Output/{gitkeep.txt => .gitkeep} | 0 .../Modify-date-and-time-format.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Modify-footer-text-font/Modify-footer-text-font.csproj | 2 +- .../Modify-footer-text-font/Output/{gitkeep.txt => .gitkeep} | 0 .../Output/{gitkeep.txt => .gitkeep} | 0 .../Remove-footers-from-all-title-slides.csproj | 2 +- 20 files changed, 10 insertions(+), 10 deletions(-) rename Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Output/{gitkeep.txt => .gitkeep} (100%) rename Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Add-date-and-time-in-PowerPoint-slide.csproj b/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Add-date-and-time-in-PowerPoint-slide.csproj index 59e6b327..a03a748a 100644 --- a/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Add-date-and-time-in-PowerPoint-slide.csproj +++ b/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Add-date-and-time-in-PowerPoint-slide.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Output/gitkeep.txt b/Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Output/gitkeep.txt rename to Headers-and-Footers/Add-date-and-time-in-PowerPoint-slide/.NET/Add-date-and-time-in-PowerPoint-slide/Output/.gitkeep diff --git a/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj b/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj index 0893fd14..16f0cabf 100644 --- a/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj +++ b/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Add-footer-in-PowerPoint.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Output/gitkeep.txt b/Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Output/gitkeep.txt rename to Headers-and-Footers/Add-footer-in-PowerPoint/.NET/Add-footer-in-PowerPoint/Output/.gitkeep diff --git a/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Add-footer-in-master-and-layout-slides.csproj b/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Add-footer-in-master-and-layout-slides.csproj index 878b0512..916d11f9 100644 --- a/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Add-footer-in-master-and-layout-slides.csproj +++ b/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Add-footer-in-master-and-layout-slides.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Output/gitkeep.txt b/Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Output/gitkeep.txt rename to Headers-and-Footers/Add-footer-in-master-and-layout-slides/.NET/Add-footer-in-master-and-layout-slides/Output/.gitkeep diff --git a/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Add-headers-and-footers-in-Notes.csproj b/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Add-headers-and-footers-in-Notes.csproj index e061bf28..8879e01b 100644 --- a/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Add-headers-and-footers-in-Notes.csproj +++ b/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Add-headers-and-footers-in-Notes.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Output/gitkeep.txt b/Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Output/gitkeep.txt rename to Headers-and-Footers/Add-headers-and-footers-in-Notes/.NET/Add-headers-and-footers-in-Notes/Output/.gitkeep diff --git a/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Add-slide-number-in-PowerPoint-slide.csproj b/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Add-slide-number-in-PowerPoint-slide.csproj index 2f865fb9..683448f8 100644 --- a/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Add-slide-number-in-PowerPoint-slide.csproj +++ b/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Add-slide-number-in-PowerPoint-slide.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Output/gitkeep.txt b/Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Output/gitkeep.txt rename to Headers-and-Footers/Add-slide-number-in-PowerPoint-slide/.NET/Add-slide-number-in-PowerPoint-slide/Output/.gitkeep diff --git a/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Edit-footer-text.csproj b/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Edit-footer-text.csproj index 0ff0f693..41446b56 100644 --- a/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Edit-footer-text.csproj +++ b/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Edit-footer-text.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Output/gitkeep.txt b/Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Output/gitkeep.txt rename to Headers-and-Footers/Edit-footer-text/.NET/Edit-footer-text/Output/.gitkeep diff --git a/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Edit-header-text.csproj b/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Edit-header-text.csproj index e29a7635..01b5fa77 100644 --- a/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Edit-header-text.csproj +++ b/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Edit-header-text.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Output/gitkeep.txt b/Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Output/gitkeep.txt rename to Headers-and-Footers/Edit-header-text/.NET/Edit-header-text/Output/.gitkeep diff --git a/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Modify-date-and-time-format.csproj b/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Modify-date-and-time-format.csproj index 7501a7e9..e2ba545f 100644 --- a/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Modify-date-and-time-format.csproj +++ b/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Modify-date-and-time-format.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Output/gitkeep.txt b/Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Output/gitkeep.txt rename to Headers-and-Footers/Modify-date-and-time-format/.NET/Modify-date-and-time-format/Output/.gitkeep diff --git a/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Modify-footer-text-font.csproj b/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Modify-footer-text-font.csproj index 94be0fcd..e95af468 100644 --- a/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Modify-footer-text-font.csproj +++ b/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Modify-footer-text-font.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Output/gitkeep.txt b/Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Output/gitkeep.txt rename to Headers-and-Footers/Modify-footer-text-font/.NET/Modify-footer-text-font/Output/.gitkeep diff --git a/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Output/gitkeep.txt b/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Output/.gitkeep similarity index 100% rename from Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Output/gitkeep.txt rename to Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Output/.gitkeep diff --git a/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Remove-footers-from-all-title-slides.csproj b/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Remove-footers-from-all-title-slides.csproj index 155bf906..d53ef934 100644 --- a/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Remove-footers-from-all-title-slides.csproj +++ b/Headers-and-Footers/Remove-footers-from-all-title-slides/.NET/Remove-footers-from-all-title-slides/Remove-footers-from-all-title-slides.csproj @@ -16,7 +16,7 @@ Always - + Always From 75ceaaea3c0388fc46f018743e760fcf7e7a72dd Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:30:48 +0530 Subject: [PATCH 17/19] Hyperlinks --- .../Add-file-hyperlink-to-picture.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Add-hyperlink-to-PowerPoint-picture.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Add-hyperlink-to-PowerPoint-shape.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Add-hyperlink-to-PowerPoint-text.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj | 2 +- .../Get-hyperlink-from-shape/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj | 2 +- .../Get-hyperlink-from-text/Output/{gitkeep.txt => .gitkeep} | 0 .../Output/{gitkeep.txt => .gitkeep} | 0 .../Remove-hyperlink-from-shape.csproj | 2 +- .../Remove-hyperlink-from-text/Output/{gitkeep.txt => .gitkeep} | 0 .../Remove-hyperlink-from-text.csproj | 2 +- 16 files changed, 8 insertions(+), 8 deletions(-) rename Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Output/{gitkeep.txt => .gitkeep} (100%) rename Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Output/{gitkeep.txt => .gitkeep} (100%) rename Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Output/{gitkeep.txt => .gitkeep} (100%) rename Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Output/{gitkeep.txt => .gitkeep} (100%) rename Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Output/{gitkeep.txt => .gitkeep} (100%) rename Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Output/{gitkeep.txt => .gitkeep} (100%) rename Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Output/{gitkeep.txt => .gitkeep} (100%) rename Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Add-file-hyperlink-to-picture.csproj b/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Add-file-hyperlink-to-picture.csproj index ae09d2a1..27f2e36c 100644 --- a/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Add-file-hyperlink-to-picture.csproj +++ b/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Add-file-hyperlink-to-picture.csproj @@ -19,7 +19,7 @@ Always - + Always diff --git a/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Output/gitkeep.txt b/Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Output/.gitkeep similarity index 100% rename from Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Output/gitkeep.txt rename to Hyperlinks/Add-file-hyperlink-to-picture/.NET/Add-file-hyperlink-to-picture/Output/.gitkeep diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Add-hyperlink-to-PowerPoint-picture.csproj b/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Add-hyperlink-to-PowerPoint-picture.csproj index b5f9cc30..0e58632a 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Add-hyperlink-to-PowerPoint-picture.csproj +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Add-hyperlink-to-PowerPoint-picture.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Output/gitkeep.txt b/Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Output/.gitkeep similarity index 100% rename from Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Output/gitkeep.txt rename to Hyperlinks/Add-hyperlink-to-PowerPoint-picture/.NET/Add-hyperlink-to-PowerPoint-picture/Output/.gitkeep diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Add-hyperlink-to-PowerPoint-shape.csproj b/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Add-hyperlink-to-PowerPoint-shape.csproj index b42f2ff5..3712171a 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Add-hyperlink-to-PowerPoint-shape.csproj +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Add-hyperlink-to-PowerPoint-shape.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Output/gitkeep.txt b/Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Output/.gitkeep similarity index 100% rename from Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Output/gitkeep.txt rename to Hyperlinks/Add-hyperlink-to-PowerPoint-shape/.NET/Add-hyperlink-to-PowerPoint-shape/Output/.gitkeep diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Add-hyperlink-to-PowerPoint-text.csproj b/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Add-hyperlink-to-PowerPoint-text.csproj index cb9d3d00..5a595659 100644 --- a/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Add-hyperlink-to-PowerPoint-text.csproj +++ b/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Add-hyperlink-to-PowerPoint-text.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Output/gitkeep.txt b/Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Output/.gitkeep similarity index 100% rename from Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Output/gitkeep.txt rename to Hyperlinks/Add-hyperlink-to-PowerPoint-text/.NET/Add-hyperlink-to-PowerPoint-text/Output/.gitkeep diff --git a/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj b/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj index 289819d0..58bdc45e 100644 --- a/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj +++ b/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Get-hyperlink-from-shape.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Output/gitkeep.txt b/Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Output/.gitkeep similarity index 100% rename from Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Output/gitkeep.txt rename to Hyperlinks/Get-hyperlink-from-shape/.NET/Get-hyperlink-from-shape/Output/.gitkeep diff --git a/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj b/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj index 77860689..8bdf112c 100644 --- a/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj +++ b/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Get-hyperlink-from-text.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Output/gitkeep.txt b/Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Output/.gitkeep similarity index 100% rename from Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Output/gitkeep.txt rename to Hyperlinks/Get-hyperlink-from-text/.NET/Get-hyperlink-from-text/Output/.gitkeep diff --git a/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Output/gitkeep.txt b/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Output/.gitkeep similarity index 100% rename from Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Output/gitkeep.txt rename to Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Output/.gitkeep diff --git a/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Remove-hyperlink-from-shape.csproj b/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Remove-hyperlink-from-shape.csproj index 49d342e0..b6bb1d4e 100644 --- a/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Remove-hyperlink-from-shape.csproj +++ b/Hyperlinks/Remove-hyperlink-from-shape/.NET/Remove-hyperlink-from-shape/Remove-hyperlink-from-shape.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Output/gitkeep.txt b/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Output/.gitkeep similarity index 100% rename from Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Output/gitkeep.txt rename to Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Output/.gitkeep diff --git a/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Remove-hyperlink-from-text.csproj b/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Remove-hyperlink-from-text.csproj index 042bd045..56c4cc49 100644 --- a/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Remove-hyperlink-from-text.csproj +++ b/Hyperlinks/Remove-hyperlink-from-text/.NET/Remove-hyperlink-from-text/Remove-hyperlink-from-text.csproj @@ -16,7 +16,7 @@ Always - + Always From af43841113c4024b068605bd7d299f2aa051750e Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:33:01 +0530 Subject: [PATCH 18/19] Images --- Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj | 2 +- .../.NET/Add-SVG-image/Output/{gitkeep.txt => .gitkeep} | 0 .../Add-image-into-PowerPoint-Slide.csproj | 2 +- .../Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Crop_and_insert_image/Crop_and_insert_image.csproj | 2 +- .../.NET/Crop_and_insert_image/Output/{gitkeep.txt => .gitkeep} | 0 Images/Crop_image/.NET/Crop_image/Crop_image.csproj | 2 +- .../Crop_image/.NET/Crop_image/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Extract_crop_image/Extract_crop_image.csproj | 2 +- .../.NET/Extract_crop_image/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Remove-all-images/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Remove-all-images/Remove-all-images.csproj | 2 +- .../Remove_crop_from_image/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Remove_crop_from_image/Remove_crop_from_image.csproj | 2 +- .../.NET/Replace-SVG-Image/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Replace-SVG-Image/Replace-SVG-Image.csproj | 2 +- .../Replace-existing-image/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Replace-existing-image/Replace-existing-image.csproj | 2 +- 18 files changed, 9 insertions(+), 9 deletions(-) rename Images/Add-SVG-image/.NET/Add-SVG-image/Output/{gitkeep.txt => .gitkeep} (100%) rename Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Output/{gitkeep.txt => .gitkeep} (100%) rename Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Output/{gitkeep.txt => .gitkeep} (100%) rename Images/Crop_image/.NET/Crop_image/Output/{gitkeep.txt => .gitkeep} (100%) rename Images/Extract_crop_image/.NET/Extract_crop_image/Output/{gitkeep.txt => .gitkeep} (100%) rename Images/Remove-all-images/.NET/Remove-all-images/Output/{gitkeep.txt => .gitkeep} (100%) rename Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Output/{gitkeep.txt => .gitkeep} (100%) rename Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Output/{gitkeep.txt => .gitkeep} (100%) rename Images/Replace-existing-image/.NET/Replace-existing-image/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj b/Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj index 410375ab..c312232e 100644 --- a/Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj +++ b/Images/Add-SVG-image/.NET/Add-SVG-image/Add-SVG-image.csproj @@ -19,7 +19,7 @@ Always - + Always diff --git a/Images/Add-SVG-image/.NET/Add-SVG-image/Output/gitkeep.txt b/Images/Add-SVG-image/.NET/Add-SVG-image/Output/.gitkeep similarity index 100% rename from Images/Add-SVG-image/.NET/Add-SVG-image/Output/gitkeep.txt rename to Images/Add-SVG-image/.NET/Add-SVG-image/Output/.gitkeep diff --git a/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Add-image-into-PowerPoint-Slide.csproj b/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Add-image-into-PowerPoint-Slide.csproj index 00164040..2f9c992d 100644 --- a/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Add-image-into-PowerPoint-Slide.csproj +++ b/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Add-image-into-PowerPoint-Slide.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Output/gitkeep.txt b/Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Output/.gitkeep similarity index 100% rename from Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Output/gitkeep.txt rename to Images/Add-image-into-PowerPoint-Slide/.NET/Add-image-into-PowerPoint-Slide/Output/.gitkeep diff --git a/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Crop_and_insert_image.csproj b/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Crop_and_insert_image.csproj index 4215cd49..e24d955a 100644 --- a/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Crop_and_insert_image.csproj +++ b/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Crop_and_insert_image.csproj @@ -15,7 +15,7 @@ Always - + Always diff --git a/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Output/gitkeep.txt b/Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Output/.gitkeep similarity index 100% rename from Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Output/gitkeep.txt rename to Images/Crop_and_insert_image/.NET/Crop_and_insert_image/Output/.gitkeep diff --git a/Images/Crop_image/.NET/Crop_image/Crop_image.csproj b/Images/Crop_image/.NET/Crop_image/Crop_image.csproj index a4f873ea..1ef8d253 100644 --- a/Images/Crop_image/.NET/Crop_image/Crop_image.csproj +++ b/Images/Crop_image/.NET/Crop_image/Crop_image.csproj @@ -15,7 +15,7 @@ Always - + Always diff --git a/Images/Crop_image/.NET/Crop_image/Output/gitkeep.txt b/Images/Crop_image/.NET/Crop_image/Output/.gitkeep similarity index 100% rename from Images/Crop_image/.NET/Crop_image/Output/gitkeep.txt rename to Images/Crop_image/.NET/Crop_image/Output/.gitkeep diff --git a/Images/Extract_crop_image/.NET/Extract_crop_image/Extract_crop_image.csproj b/Images/Extract_crop_image/.NET/Extract_crop_image/Extract_crop_image.csproj index 7261b765..364f519b 100644 --- a/Images/Extract_crop_image/.NET/Extract_crop_image/Extract_crop_image.csproj +++ b/Images/Extract_crop_image/.NET/Extract_crop_image/Extract_crop_image.csproj @@ -15,7 +15,7 @@ Always - + Always diff --git a/Images/Extract_crop_image/.NET/Extract_crop_image/Output/gitkeep.txt b/Images/Extract_crop_image/.NET/Extract_crop_image/Output/.gitkeep similarity index 100% rename from Images/Extract_crop_image/.NET/Extract_crop_image/Output/gitkeep.txt rename to Images/Extract_crop_image/.NET/Extract_crop_image/Output/.gitkeep diff --git a/Images/Remove-all-images/.NET/Remove-all-images/Output/gitkeep.txt b/Images/Remove-all-images/.NET/Remove-all-images/Output/.gitkeep similarity index 100% rename from Images/Remove-all-images/.NET/Remove-all-images/Output/gitkeep.txt rename to Images/Remove-all-images/.NET/Remove-all-images/Output/.gitkeep diff --git a/Images/Remove-all-images/.NET/Remove-all-images/Remove-all-images.csproj b/Images/Remove-all-images/.NET/Remove-all-images/Remove-all-images.csproj index fcda8591..a006a8ce 100644 --- a/Images/Remove-all-images/.NET/Remove-all-images/Remove-all-images.csproj +++ b/Images/Remove-all-images/.NET/Remove-all-images/Remove-all-images.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Output/gitkeep.txt b/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Output/.gitkeep similarity index 100% rename from Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Output/gitkeep.txt rename to Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Output/.gitkeep diff --git a/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Remove_crop_from_image.csproj b/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Remove_crop_from_image.csproj index 7261b765..364f519b 100644 --- a/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Remove_crop_from_image.csproj +++ b/Images/Remove_crop_from_image/.NET/Remove_crop_from_image/Remove_crop_from_image.csproj @@ -15,7 +15,7 @@ Always - + Always diff --git a/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Output/gitkeep.txt b/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Output/.gitkeep similarity index 100% rename from Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Output/gitkeep.txt rename to Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Output/.gitkeep diff --git a/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Replace-SVG-Image.csproj b/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Replace-SVG-Image.csproj index fe45c629..93e13264 100644 --- a/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Replace-SVG-Image.csproj +++ b/Images/Replace-SVG-Image/.NET/Replace-SVG-Image/Replace-SVG-Image.csproj @@ -19,7 +19,7 @@ Always - + Always diff --git a/Images/Replace-existing-image/.NET/Replace-existing-image/Output/gitkeep.txt b/Images/Replace-existing-image/.NET/Replace-existing-image/Output/.gitkeep similarity index 100% rename from Images/Replace-existing-image/.NET/Replace-existing-image/Output/gitkeep.txt rename to Images/Replace-existing-image/.NET/Replace-existing-image/Output/.gitkeep diff --git a/Images/Replace-existing-image/.NET/Replace-existing-image/Replace-existing-image.csproj b/Images/Replace-existing-image/.NET/Replace-existing-image/Replace-existing-image.csproj index 72d573e4..3dfbd438 100644 --- a/Images/Replace-existing-image/.NET/Replace-existing-image/Replace-existing-image.csproj +++ b/Images/Replace-existing-image/.NET/Replace-existing-image/Replace-existing-image.csproj @@ -19,7 +19,7 @@ Always - + Always From 2c0efb92e7b92843d48b5208e8fbb77455c990f2 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Wed, 21 Aug 2024 11:34:30 +0530 Subject: [PATCH 19/19] Lists --- .../.NET/Create-bulleted-list/Create-bulleted-list.csproj | 2 +- .../.NET/Create-bulleted-list/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-multilevel-list/Create-multilevel-list.csproj | 2 +- .../Create-multilevel-list/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-numbered-list/Create-numbered-list.csproj | 2 +- .../.NET/Create-numbered-list/Output/{gitkeep.txt => .gitkeep} | 0 .../.NET/Create-picture-list/Create-picture-list.csproj | 2 +- .../.NET/Create-picture-list/Output/{gitkeep.txt => .gitkeep} | 0 8 files changed, 4 insertions(+), 4 deletions(-) rename Lists/Create-bulleted-list/.NET/Create-bulleted-list/Output/{gitkeep.txt => .gitkeep} (100%) rename Lists/Create-multilevel-list/.NET/Create-multilevel-list/Output/{gitkeep.txt => .gitkeep} (100%) rename Lists/Create-numbered-list/.NET/Create-numbered-list/Output/{gitkeep.txt => .gitkeep} (100%) rename Lists/Create-picture-list/.NET/Create-picture-list/Output/{gitkeep.txt => .gitkeep} (100%) diff --git a/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Create-bulleted-list.csproj b/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Create-bulleted-list.csproj index a4a3ecc6..a98544ac 100644 --- a/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Create-bulleted-list.csproj +++ b/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Create-bulleted-list.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Output/gitkeep.txt b/Lists/Create-bulleted-list/.NET/Create-bulleted-list/Output/.gitkeep similarity index 100% rename from Lists/Create-bulleted-list/.NET/Create-bulleted-list/Output/gitkeep.txt rename to Lists/Create-bulleted-list/.NET/Create-bulleted-list/Output/.gitkeep diff --git a/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Create-multilevel-list.csproj b/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Create-multilevel-list.csproj index 4a0c4cc2..cae45b22 100644 --- a/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Create-multilevel-list.csproj +++ b/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Create-multilevel-list.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Output/gitkeep.txt b/Lists/Create-multilevel-list/.NET/Create-multilevel-list/Output/.gitkeep similarity index 100% rename from Lists/Create-multilevel-list/.NET/Create-multilevel-list/Output/gitkeep.txt rename to Lists/Create-multilevel-list/.NET/Create-multilevel-list/Output/.gitkeep diff --git a/Lists/Create-numbered-list/.NET/Create-numbered-list/Create-numbered-list.csproj b/Lists/Create-numbered-list/.NET/Create-numbered-list/Create-numbered-list.csproj index 20672431..70258ba7 100644 --- a/Lists/Create-numbered-list/.NET/Create-numbered-list/Create-numbered-list.csproj +++ b/Lists/Create-numbered-list/.NET/Create-numbered-list/Create-numbered-list.csproj @@ -13,7 +13,7 @@ - + Always diff --git a/Lists/Create-numbered-list/.NET/Create-numbered-list/Output/gitkeep.txt b/Lists/Create-numbered-list/.NET/Create-numbered-list/Output/.gitkeep similarity index 100% rename from Lists/Create-numbered-list/.NET/Create-numbered-list/Output/gitkeep.txt rename to Lists/Create-numbered-list/.NET/Create-numbered-list/Output/.gitkeep diff --git a/Lists/Create-picture-list/.NET/Create-picture-list/Create-picture-list.csproj b/Lists/Create-picture-list/.NET/Create-picture-list/Create-picture-list.csproj index e980b933..da6852ed 100644 --- a/Lists/Create-picture-list/.NET/Create-picture-list/Create-picture-list.csproj +++ b/Lists/Create-picture-list/.NET/Create-picture-list/Create-picture-list.csproj @@ -16,7 +16,7 @@ Always - + Always diff --git a/Lists/Create-picture-list/.NET/Create-picture-list/Output/gitkeep.txt b/Lists/Create-picture-list/.NET/Create-picture-list/Output/.gitkeep similarity index 100% rename from Lists/Create-picture-list/.NET/Create-picture-list/Output/gitkeep.txt rename to Lists/Create-picture-list/.NET/Create-picture-list/Output/.gitkeep