-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.props
33 lines (33 loc) · 1.54 KB
/
common.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
<Project>
<Import Project="version.props" />
<PropertyGroup>
<RootNamespace />
<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>
<Authors>lenfon</Authors>
<Description>A base implementation of strongly typed ids that supports Newtonsoft.Json, System.Text.Json, EntityFramework Core, and Swashbuckle.AspNetCore.</Description>
<PackageTags>len;id;strongly-typed;primitive;value;DDD</PackageTags>
<PackageProjectUrl>https://github.com/lenfon/StronglyTypedId</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/lenfon/StronglyTypedId</RepositoryUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Include symbol files (*.pdb) in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<!--<Pack>True</Pack>
<PackagePath>\</PackagePath>-->
<!--</None>-->
</ItemGroup>
</Project>