From 34ff7ffaf2a91a069354576f62f971a008d858d4 Mon Sep 17 00:00:00 2001 From: Ricardo Carneiro Date: Sat, 10 Aug 2024 22:39:26 -0300 Subject: [PATCH] =?UTF-8?q?Primeira=20vers=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 - Program.cs | 2 ++ SharepointScrape.csproj | 10 ++++++++++ SharepointScrape.sln | 25 +++++++++++++++++++++++++ 4 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 Program.cs create mode 100644 SharepointScrape.csproj create mode 100644 SharepointScrape.sln diff --git a/.gitignore b/.gitignore index d5dca0c..f312117 100644 --- a/.gitignore +++ b/.gitignore @@ -411,4 +411,3 @@ FodyWeavers.xsd # Built Visual Studio Code Extensions *.vsix - diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/SharepointScrape.csproj b/SharepointScrape.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/SharepointScrape.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/SharepointScrape.sln b/SharepointScrape.sln new file mode 100644 index 0000000..a9cbe03 --- /dev/null +++ b/SharepointScrape.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35122.118 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharepointScrape", "SharepointScrape.csproj", "{287B00C6-3B62-4DCD-B7C3-103DABC90443}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {287B00C6-3B62-4DCD-B7C3-103DABC90443}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {287B00C6-3B62-4DCD-B7C3-103DABC90443}.Debug|Any CPU.Build.0 = Debug|Any CPU + {287B00C6-3B62-4DCD-B7C3-103DABC90443}.Release|Any CPU.ActiveCfg = Release|Any CPU + {287B00C6-3B62-4DCD-B7C3-103DABC90443}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E3D3AB34-95FE-48B4-85EE-5B357004317E} + EndGlobalSection +EndGlobal