-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMaxima.Cliente.Omie.csproj
40 lines (31 loc) · 1.55 KB
/
Maxima.Cliente.Omie.csproj
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
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Domain\Api\Utils\ResponseOmieMeioPagamento.cs" />
</ItemGroup>
<ItemGroup>
<!-- <PackageReference Include="maxima.net.sdk.integracao" Version="1.0.3" /> -->
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="6.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.3" />
<PackageReference Include="Hangfire.Core" Version="1.7.*" />
<PackageReference Include="Hangfire.MemoryStorage.Core" Version="1.4.*" />
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.*" />
<PackageReference Include="AutoMapper" Version="11.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Maxima.Net.SDK.Integracao\Maxima.Net.SDK.Integracao.csproj" />
</ItemGroup>
</Project>