Add projects properties in csproj files (#335)
This commit is contained in:
Родитель
71d6ae3eff
Коммит
13fab5a40f
|
@ -2,9 +2,19 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<AssemblyName>Microsoft.Performance.Toolkit.Plugins.Core</AssemblyName>
|
||||
<RootNamespace>Microsoft.Performance.Toolkit.Plugins.Core</RootNamespace>
|
||||
<Authors>Microsoft</Authors>
|
||||
<Company>Microsoft Corporation</Company>
|
||||
<Product>Performance ToolKit</Product>
|
||||
<Description>Contains the core types for building extensions for the Performance Toolkit plugins system. This package is not intended to be used directly.</Description>
|
||||
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
|
||||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
|
||||
<RepositoryUrl>https://github.com/microsoft/microsoft-performance-toolkit-sdk</RepositoryUrl>
|
||||
<PackageProjectUrl>https://github.com/microsoft/microsoft-performance-toolkit-sdk</PackageProjectUrl>
|
||||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Microsoft.Performance.SDK\Microsoft.Performance.SDK.csproj" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<AssemblyName>Microsoft.Performance.Toolkit.Plugins.Runtime</AssemblyName>
|
||||
<RootNamespace>Microsoft.Performance.Toolkit.Plugins.Runtime</RootNamespace>
|
||||
<Authors>Microsoft</Authors>
|
||||
<Company>Microsoft Corporation</Company>
|
||||
<Product>Performance ToolKit</Product>
|
||||
<Description>Contains the core types and components for the Performance ToolKit plugins system.</Description>
|
||||
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
|
||||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
|
||||
<RepositoryUrl>https://github.com/microsoft/microsoft-performance-toolkit-sdk</RepositoryUrl>
|
||||
<PackageProjectUrl>https://github.com/microsoft/microsoft-performance-toolkit-sdk</PackageProjectUrl>
|
||||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<Nullable>enable</Nullable>
|
||||
<PackAsTool>true</PackAsTool>
|
||||
<ToolCommandName>plugintool</ToolCommandName>
|
||||
<Description>A CLI tool for managing Performance Toolkit plugins.</Description>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
Загрузка…
Ссылка в новой задаче