-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Directory.Build.props
60 lines (51 loc) · 2.35 KB
/
Directory.Build.props
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Label="Configure assembly names and namespaces">
<AssemblyName>$(SolutionName).$(MSBuildProjectName)</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
</PropertyGroup>
<PropertyGroup Label="Common assembly attributes">
<Version>8.1.3</Version>
<FileVersion>8.1.3</FileVersion>
<AssemblyVersion>8.1.3</AssemblyVersion>
<Authors>Giorgi Dalakishvili</Authors>
<Copyright>Copyright (c) 2018 - 2024 Giorgi Dalakishvili</Copyright>
<IsTrimmable>true</IsTrimmable>
<PackageId>EntityFrameworkCore.Exceptions.$(MSBuildProjectName)</PackageId>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>License.md</PackageLicenseFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReleaseNotes>Add ConstraintName, ConstraintProperties and SchemaQualifiedTableName to UniqueConstraintException and ReferenceConstraintException</PackageReleaseNotes>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(Configuration)'=='Release'">True</ContinuousIntegrationBuild>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Giorgi/EntityFramework.Exceptions</RepositoryUrl>
<PackageProjectUrl>https://github.com/Giorgi/EntityFramework.Exceptions</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<None Include="..\Icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\License.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="$(MSBuildProjectName) != 'Common'">
<ProjectReference Include="..\EntityFramework.Exceptions.Common\Common.csproj" />
</ItemGroup>
</Project>