-
Notifications
You must be signed in to change notification settings - Fork 108
/
Directory.Build.props
37 lines (37 loc) · 1.46 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
<Project>
<PropertyGroup>
<DeveloperBuildCoreTfms>net7.0</DeveloperBuildCoreTfms>
<StandardTfms>netstandard2.0;net45;</StandardTfms>
<Version>2.1.0.6</Version>
<Authors>Du yanming</Authors>
<Company>Du yanming</Company>
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/duyanming/Viper</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/duyanming/Anno.Core</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<packageTypes>
<packageType name="SymbolsPackage"/>
</packageTypes>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(SolutionDir)key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="$(SolutionDir)logo.png" Pack="true" PackagePath="\" />
<None Include="$(SolutionDir)LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>