-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHackaton-API.csproj
More file actions
34 lines (29 loc) · 1.46 KB
/
Hackaton-API.csproj
File metadata and controls
34 lines (29 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Hackaton_API</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Migrations\20210904192144_Agendamentos.cs" />
<Compile Remove="Migrations\20210904192144_Agendamentos.Designer.cs" />
<Compile Remove="Migrations\20210910151322_Cargo-Funcionario.cs" />
<Compile Remove="Migrations\20210910151322_Cargo-Funcionario.Designer.cs" />
<Compile Remove="Migrations\20210910153615_Cargo-Funcionario.cs" />
<Compile Remove="Migrations\20210910153615_Cargo-Funcionario.Designer.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.18">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.2.6" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.1" />
</ItemGroup>
<Target Name="PrePublishTarget" AfterTargets="Publish">
<Exec Command="dotnet tool restore" />
<Exec Command="dotnet ef database update" />
<Exec Command="dotnet run" />
</Target>
</Project>