This commit is contained in:
Kirill Osenkov 2022-07-26 15:51:50 -07:00
Родитель 0f2ad7d35f
Коммит b38d0b396c
4 изменённых файлов: 43 добавлений и 7 удалений

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

@ -2,6 +2,20 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>MonoDevelop.Xml.Core</PackageId>
<Version>1.0.0</Version>
<Authors>mhutch, Microsoft</Authors>
<Company>Microsoft</Company>
<Summary>A full-fidelity XML parser</Summary>
<Description>A full-fidelity XML parser. Produces a syntax tree from XML text, and provides low-level API to examine the exact structure of the source text.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/xamarin/MonoDevelop.Xml</PackageProjectUrl>
<RepositoryUrl>https://github.com/xamarin/MonoDevelop.Xml</RepositoryUrl>
<PackageTags>Xml Parser</PackageTags>
</PropertyGroup>
</Project>

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

@ -3,7 +3,10 @@
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)private.snk</AssemblyOriginatorKeyFile>
<LangVersion>latest</LangVersion>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
</Project>

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

@ -2,13 +2,26 @@
<PropertyGroup>
<TargetFrameworks>net6.0;net472</TargetFrameworks>
<LangVersion>latest</LangVersion>
<!--
NU1701 - Restoring some net472 packages in net6.0.
-->
<NoWarn>$(NoWarn);NU1701</NoWarn>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>MonoDevelop.Xml.Editor</PackageId>
<Version>1.0.0</Version>
<Authors>mhutch, Microsoft</Authors>
<Company>Microsoft</Company>
<Summary>A full-fidelity XML language service</Summary>
<Description>A full-fidelity XML language service.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/xamarin/MonoDevelop.Xml</PackageProjectUrl>
<RepositoryUrl>https://github.com/xamarin/MonoDevelop.Xml</RepositoryUrl>
<PackageTags>Xml Parser</PackageTags>
</PropertyGroup>
<ItemGroup>
<Compile Remove="BaseXmlEditorExtension.cs" />
<Compile Remove="XmlParsedDocument.cs" />
@ -23,11 +36,14 @@
<ItemGroup>
<ProjectReference Include="..\Core\MonoDevelop.Xml.Core.csproj" />
<PackageReference Include="Microsoft.VisualStudio.ImageCatalog" Version="17.1.32107.28" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.Language" Version="17.1.387" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.Language.Intellisense" Version="17.1.387" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.Language.StandardClassification" Version="17.1.387" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.1.46" ExcludeAssets="runtime" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.ImageCatalog" Version="17.2.32505.113" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.Language" Version="17.2.3194" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.Language.Intellisense" Version="17.2.3194" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.Language.StandardClassification" Version="17.2.3194" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.2.32" ExcludeAssets="runtime" />
</ItemGroup>
<ItemGroup>

3
push.cmd Normal file
Просмотреть файл

@ -0,0 +1,3 @@
nuget.exe push -Source https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/VSMac/nuget/v3/index.json -ApiKey AzureDevOps Core\bin\Release\*.nupkg
nuget.exe push -Source https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/VSMac/nuget/v3/index.json -ApiKey AzureDevOps Editor\bin\Release\*.nupkg