-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathef-migration-diff.csproj
More file actions
45 lines (40 loc) · 1.99 KB
/
Copy pathef-migration-diff.csproj
File metadata and controls
45 lines (40 loc) · 1.99 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
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>EfMigrationDiff</RootNamespace>
<AssemblyName>ef-migration-diff</AssemblyName>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>Zaiets.ef.migration.diff</PackageId>
<Version>1.0.0</Version>
<Authors>Vladyslav Zaiets</Authors>
<Description>Compare Entity Framework migrations between branches - detect conflicts, preview schema changes</Description>
<PackageTags>entity-framework ef-core migrations dotnet diff</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/sarmkadan/ef-migration-diff</PackageProjectUrl>
<RepositoryUrl>https://github.com/sarmkadan/ef-migration-diff</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="examples/**/*.cs" />
<Compile Remove="tests/**/*.cs" />
<Compile Remove="ef-migration-diff.Benchmarks/**/*.cs" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
<PackageReference Include="LibGit2Sharp" Version="0.31.0" />
</ItemGroup>
</Project>