Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Create nuget package at build time #807

Merged
merged 3 commits into from
Oct 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>An Excel formatter for ApiPort reports</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
<value>Details</value>
</data>
<data name="HowToReadTheExcelTable" xml:space="preserve">
<value>See 'http://go.microsoft.com/fwlink/?LinkId=397652' to learn how to read this table</value>
<value>See 'https://aka.ms/dotnet-portabilityanalyzer' to learn how to read this table</value>
</data>
<data name="MissingAssembliesPageTitle" xml:space="preserve">
<value>Missing assemblies</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Description>An HTML formatter for ApiPort reports</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

<PropertyGroup>
<Description>A JSON formatter for ApiPort reports</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<Description>The core data structures and network calls for .NET Portability Analyzer</Description>
<!-- Adding this to properly suppress CA3053. -->
<DefineConstants>$(DefineConstants);CODE_ANALYSIS</DefineConstants>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'== 'netstandard2.0' ">
Expand Down