This repository was archived by the owner on May 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.props
More file actions
39 lines (31 loc) · 1.54 KB
/
package.props
File metadata and controls
39 lines (31 loc) · 1.54 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
<Project>
<Import Project="version.props" />
<PropertyGroup>
<Version>$(MajorVersion).$(MinorVersion).$(ReleaseVersion)</Version>
<PreAssemblyName>DotFramework</PreAssemblyName>
<ProjectName>Core</ProjectName>
<FullProjectName>$(PreAssemblyName).$(ProjectName)</FullProjectName>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageVersion>$(Version)$(PackageSemanticVersionSuffix)</PackageVersion>
<PackageReleaseNotes>This package is distributed as .NET Standard, .NET Core, .NET Framework package.</PackageReleaseNotes>
<PrePackageName>DotFramework</PrePackageName>
<Authors>dotFramework</Authors>
<PackageIconUrl>https://www.dotframework.net/Content/img/logo-128.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://www.dotFramework.net/</PackageProjectUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/dotFramework/core</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<OutputPath>$(SolutionDir)..\bin\$(Configuration)</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<DebugType>Full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
</Project>