Add projects properties in csproj files (#335)

This commit is contained in:
helenkzhang 2023-10-31 09:38:06 -07:00 коммит произвёл GitHub
Родитель 71d6ae3eff
Коммит 13fab5a40f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 23 добавлений и 1 удалений

Просмотреть файл

@ -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>