Skip to content

Commit

Permalink
nova tentativa no arquivo build
Browse files Browse the repository at this point in the history
  • Loading branch information
patgsilva committed Jun 21, 2024
1 parent 1afd47b commit 66f79f1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,14 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x' # ajuste para a versão do .NET que você precisa
dotnet-version: '8.0' # ajuste para a versão do .NET que você precisa

- name: Restore dependencies
run: dotnet restore
run: dotnet restore **/*.csproj

- name: Build
run: dotnet build --configuration Release
run: dotnet build **/*.csproj --no-restore

- name: Test
run: dotnet test --no-restore --verbosity normal



25 changes: 25 additions & 0 deletions github-actions-dotnet-webapp.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

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}") = "github4women", "github4women\github4women.csproj", "{E7107432-67B0-4DED-96C0-7EA7863D3306}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E7107432-67B0-4DED-96C0-7EA7863D3306}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E7107432-67B0-4DED-96C0-7EA7863D3306}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E7107432-67B0-4DED-96C0-7EA7863D3306}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E7107432-67B0-4DED-96C0-7EA7863D3306}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {75442C07-A71B-4748-B8A6-61D4531694D9}
EndGlobalSection
EndGlobal

0 comments on commit 66f79f1

Please sign in to comment.