-
Notifications
You must be signed in to change notification settings - Fork 558
/
ClassifiedAds.Migrator.csproj
41 lines (35 loc) · 1.57 KB
/
ClassifiedAds.Migrator.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
41
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AnalysisMode>Recommended</AnalysisMode>
<AnalysisModeSecurity>All</AnalysisModeSecurity>
<UserSecretsId>b8df572d-5be2-4f41-b55a-8f4e2ef2b569</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="DbUp\MiniProfiler\0001-CreateTables.sql" />
<EmbeddedResource Include="DbUp\SqlServerDistributedCache\0001-CreateTables.sql" />
</ItemGroup>
<ItemGroup>
<Folder Include="Scripts\Functions\" />
<Folder Include="Scripts\Indexes\" />
<Folder Include="Scripts\Types\" />
<Folder Include="Scripts\Stored Procedures\" />
<Folder Include="Scripts\Views\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="dbup" Version="5.0.37" />
<PackageReference Include="Polly" Version="8.2.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ClassifiedAds.Infrastructure\ClassifiedAds.Infrastructure.csproj" />
<ProjectReference Include="..\ClassifiedAds.Persistence\ClassifiedAds.Persistence.csproj" />
</ItemGroup>
</Project>