From 74fc67cc5108dd636c0c540cf890c38a7237b408 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luiz=20da=20Silva?= <111994982+andrejava2022@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:53:12 -0300 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 765fafd..37e7a3e 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# csharp-examples \ No newline at end of file +## Bootcamp DIO e GFT From 4bc188fb0fb943a90abc31b171d6a128e31d057f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luiz=20da=20Silva?= <111994982+andrejava2022@users.noreply.github.com> Date: Mon, 14 Aug 2023 15:17:45 -0300 Subject: [PATCH 2/2] Atualizado para a versao .NET 6, modificado as classes csproj --- .vscode/settings.json | 3 ++ 01-EstruturaDoPrograma.sln | 43 +++++++++++++++++++ .../EstruturaDoPrograma.csproj | 2 +- 02-Instrucoes/Instrucoes.csproj | 2 +- 03-Classes/Classes.csproj | 2 +- 5 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 01-EstruturaDoPrograma.sln diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a9b1c5a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dotnet.defaultSolution": "01-EstruturaDoPrograma.sln" +} \ No newline at end of file diff --git a/01-EstruturaDoPrograma.sln b/01-EstruturaDoPrograma.sln new file mode 100644 index 0000000..a9bbfa5 --- /dev/null +++ b/01-EstruturaDoPrograma.sln @@ -0,0 +1,43 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.002.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EstruturaDoPrograma", "01-EstruturaDoPrograma\EstruturaDoPrograma.csproj", "{FCFF1F29-8EF4-4EDA-84BE-6E1D7E64D38B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Instrucoes", "02-Instrucoes\Instrucoes.csproj", "{B034C3B5-6CAE-4BB4-A48D-6CDD2F49C010}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Classes", "03-Classes\Classes.csproj", "{22FA0317-C12A-448B-8A7E-70D41DBDF7F1}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Revisao", "Revisao\Revisao.csproj", "{5E4FBF7F-8BBD-4BF9-B738-6FA36B42AE8E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FCFF1F29-8EF4-4EDA-84BE-6E1D7E64D38B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FCFF1F29-8EF4-4EDA-84BE-6E1D7E64D38B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FCFF1F29-8EF4-4EDA-84BE-6E1D7E64D38B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FCFF1F29-8EF4-4EDA-84BE-6E1D7E64D38B}.Release|Any CPU.Build.0 = Release|Any CPU + {B034C3B5-6CAE-4BB4-A48D-6CDD2F49C010}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B034C3B5-6CAE-4BB4-A48D-6CDD2F49C010}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B034C3B5-6CAE-4BB4-A48D-6CDD2F49C010}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B034C3B5-6CAE-4BB4-A48D-6CDD2F49C010}.Release|Any CPU.Build.0 = Release|Any CPU + {22FA0317-C12A-448B-8A7E-70D41DBDF7F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {22FA0317-C12A-448B-8A7E-70D41DBDF7F1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {22FA0317-C12A-448B-8A7E-70D41DBDF7F1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {22FA0317-C12A-448B-8A7E-70D41DBDF7F1}.Release|Any CPU.Build.0 = Release|Any CPU + {5E4FBF7F-8BBD-4BF9-B738-6FA36B42AE8E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5E4FBF7F-8BBD-4BF9-B738-6FA36B42AE8E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5E4FBF7F-8BBD-4BF9-B738-6FA36B42AE8E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5E4FBF7F-8BBD-4BF9-B738-6FA36B42AE8E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {59B912BF-A944-4824-B6C5-4B3FE90313AC} + EndGlobalSection +EndGlobal diff --git a/01-EstruturaDoPrograma/EstruturaDoPrograma.csproj b/01-EstruturaDoPrograma/EstruturaDoPrograma.csproj index 958d2f1..120e38c 100644 --- a/01-EstruturaDoPrograma/EstruturaDoPrograma.csproj +++ b/01-EstruturaDoPrograma/EstruturaDoPrograma.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.0 + net7.0 diff --git a/02-Instrucoes/Instrucoes.csproj b/02-Instrucoes/Instrucoes.csproj index 958d2f1..120e38c 100644 --- a/02-Instrucoes/Instrucoes.csproj +++ b/02-Instrucoes/Instrucoes.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.0 + net7.0 diff --git a/03-Classes/Classes.csproj b/03-Classes/Classes.csproj index 958d2f1..120e38c 100644 --- a/03-Classes/Classes.csproj +++ b/03-Classes/Classes.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.0 + net7.0