-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a MonoDoc nuget package #246
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ TestResult.xml | |
*.user | ||
bin | ||
obj | ||
.DS_Store | ||
.vs | ||
*.metagen | ||
*.pdb | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[submodule "external/SharpZipLib"] | ||
path = external/SharpZipLib | ||
url = https://github.com/icsharpcode/SharpZipLib.git | ||
[submodule "external/Lucene.Net.Light"] | ||
path = external/Lucene.Net.Light | ||
url = https://github.com/mono/Lucene.Net.Light.git |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,11 @@ all: build | |
build: $(MDOC) | ||
|
||
$(MDOC): | ||
$(MSBUILD) apidoctools.sln /p:Configuration=$(CONFIGURATION); | ||
$(MSBUILD) apidoctools.sln /r /p:Configuration=$(CONFIGURATION); | ||
|
||
prepare: | ||
git submodule update --init --recursive | ||
nuget restore apidoctools.sln | ||
nuget install NUnit.Console -version 3.6.0 -NoCache -o packages | ||
nuget install NUnit.Console -version 3.10.0 -NoCache -o packages | ||
|
||
clean: | ||
#$(MSBUILD) apidoctools.sln /t:clean | ||
|
@@ -26,6 +25,7 @@ check-mdoc: | |
|
||
nuget: | ||
nuget pack mdoc/mdoc.nuspec -outputdirectory bin/Nuget | ||
$(MSBUILD) monodoc/monodoc.csproj /p:Configuration=$(CONFIGURATION) /t:Pack | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This runs the MSBuild pack target |
||
|
||
check-monodoc: | ||
cd monodoc; $(MAKE) check -B |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Project> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. General package metadata |
||
<PropertyGroup> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageVersion>5.6.4</PackageVersion> | ||
<Authors>Microsoft</Authors> | ||
<PackageProjectUrl>https://github.com/mono/api-doc-tools</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/mono/api-doc-tools/blob/master/LICENSE.md</PackageLicenseUrl> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<PackageTags>documentation ecmaxml dotnet .net C# F# VB.NET</PackageTags> | ||
</PropertyGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "monodoc", "monodoc\monodoc. | |
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monodoc.Test", "monodoc\Test\Monodoc.Test.csproj", "{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpZipLib", "external\SharpZipLib\ICSharpCode.SharpZipLib.NET45\ICSharpCode.SharpZipLib.csproj", "{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Switched this to a NuGet reference so it could be a package dependency |
||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mdoc.Test", "mdoc\mdoc.Test\mdoc.Test.csproj", "{5ADDEFB6-930C-46BC-8B2B-FDE5C7E3B5AD}" | ||
EndProject | ||
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "mdoc.Test.FSharp", "mdoc\mdoc.Test\mdoc.Test.FSharp\mdoc.Test.FSharp.fsproj", "{979F9F80-12FE-4236-9E93-6D554AB13701}" | ||
|
@@ -85,22 +83,6 @@ Global | |
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Release|x64.Build.0 = Release|Any CPU | ||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Release|x86.ActiveCfg = Release|Any CPU | ||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Release|x86.Build.0 = Release|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|ARM.ActiveCfg = Debug|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|ARM.Build.0 = Debug|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|x64.ActiveCfg = Debug|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|x64.Build.0 = Debug|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|x86.ActiveCfg = Debug|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|x86.Build.0 = Debug|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|ARM.ActiveCfg = Release|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|ARM.Build.0 = Release|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|x64.ActiveCfg = Release|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|x64.Build.0 = Release|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|x86.ActiveCfg = Release|Any CPU | ||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|x86.Build.0 = Release|Any CPU | ||
{5ADDEFB6-930C-46BC-8B2B-FDE5C7E3B5AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{5ADDEFB6-930C-46BC-8B2B-FDE5C7E3B5AD}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{5ADDEFB6-930C-46BC-8B2B-FDE5C7E3B5AD}.Debug|ARM.ActiveCfg = Debug|Any CPU | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,7 +126,7 @@ public void NoSupport_DefaultParameters() | |
TestMethodSignature(CSharpTestLib, "Mono.DocTest.Widget", "Default", null); | ||
} | ||
|
||
[TestFixtureTearDown] | ||
[OneTimeTearDown] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tracking NUnit API change |
||
public void TearDown() | ||
{ | ||
moduleCash.Clear(); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,16 +94,12 @@ | |
<Compile Include="Library1.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="FSharp.Core"> | ||
<HintPath>..\..\..\packages\FSharp.Core.4.3.4\lib\net45\FSharp.Core.dll</HintPath> | ||
</Reference> | ||
<Reference Include="mscorlib" /> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Numerics" /> | ||
<Reference Include="System.ValueTuple"> | ||
<HintPath>..\packages\System.ValueTuple.4.3.1\lib\netstandard1.0\System.ValueTuple.dll</HintPath> | ||
</Reference> | ||
<PackageReference Include="FSharp.Core" Version="4.3.4" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Switched these to PackageReferences for consistency |
||
<PackageReference Include="System.ValueTuple" Version="4.3.1" /> | ||
</ItemGroup> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<OutputType>Library</OutputType> | ||
<RootNamespace>mdoc.Test</RootNamespace> | ||
<AssemblyName>mdoc.Test</AssemblyName> | ||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> | ||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unlike 4.6.1, 4.7.1 doesn't require a pile of polyfill to be netstandard 2.0 compatible |
||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
|
@@ -28,30 +28,11 @@ | |
<RunPostBuildEvent>Always</RunPostBuildEvent> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> | ||
<HintPath>..\..\packages\FSharp.Core.4.3.4\lib\net45\FSharp.Core.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="mdoc.Test.Cplusplus, Version=1.0.6544.28971, Culture=neutral, processorArchitecture=AMD64"> | ||
<SpecificVersion>False</SpecificVersion> | ||
<HintPath>..\..\external\Test\mdoc.Test.Cplusplus.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="nunit.framework"> | ||
<HintPath>..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Mono.Cecil, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL"> | ||
<HintPath>..\..\packages\Mono.Cecil.0.10.0-beta5\lib\net40\Mono.Cecil.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Mono.Cecil.Mdb, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL"> | ||
<HintPath>..\..\packages\Mono.Cecil.0.10.0-beta5\lib\net40\Mono.Cecil.Mdb.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Mono.Cecil.Pdb, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL"> | ||
<HintPath>..\..\packages\Mono.Cecil.0.10.0-beta5\lib\net40\Mono.Cecil.Pdb.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Mono.Cecil.Rocks, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL"> | ||
<HintPath>..\..\packages\Mono.Cecil.0.10.0-beta5\lib\net40\Mono.Cecil.Rocks.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Windows"> | ||
<HintPath>..\..\external\Windows\Windows.WinMD</HintPath> | ||
</Reference> | ||
|
@@ -99,14 +80,15 @@ | |
<Compile Include="XmlUpdateTests.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="packages.config"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Include="cppcli\cppcli\cppcli.h"> | ||
<Link>SampleClasses\cppcli.h</Link> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<!-- PrivateAssets=all is to keep VSMac happy by copying NUnit.Framework.dll --> | ||
<PackageReference Include="NUnit" Version="3.10.1" PrivateAssets="all" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" /> | ||
<PackageReference Include="Mono.Cecil" Version="0.10.0" PrivateAssets="all" /> | ||
<ProjectReference Include="..\mdoc.csproj"> | ||
<Project>{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}</Project> | ||
<Name>mdoc</Name> | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
<OutputType>Exe</OutputType> | ||
<RootNamespace>mdoc</RootNamespace> | ||
<AssemblyName>mdoc</AssemblyName> | ||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | ||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>True</DebugSymbols> | ||
|
@@ -34,18 +34,8 @@ | |
<Prefer32Bit>false</Prefer32Bit> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Mono.Cecil, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Mono.Cecil.0.10.0-beta5\lib\net40\Mono.Cecil.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Mono.Cecil.Mdb, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Mono.Cecil.0.10.0-beta5\lib\net40\Mono.Cecil.Mdb.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Mono.Cecil.Pdb, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Mono.Cecil.0.10.0-beta5\lib\net40\Mono.Cecil.Pdb.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Mono.Cecil.Rocks, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Mono.Cecil.0.10.0-beta5\lib\net40\Mono.Cecil.Rocks.dll</HintPath> | ||
</Reference> | ||
<PackageReference Include="Mono.Cecil" Version="0.10.0" PrivateAssets="all" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are private so that they are local copied and mdoc works |
||
<PackageReference Include="SharpZipLib" Version="1.0.0-alpha2" PrivateAssets="all" /> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
|
@@ -168,17 +158,9 @@ | |
<None Include="..\..\class\monodoc\Resources\mono-ecma-css.xsl"> | ||
<Link>Resources\mono-ecma-css.xsl</Link> | ||
</None> | ||
<None Include="packages.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\external\SharpZipLib\ICSharpCode.SharpZipLib.NET45\ICSharpCode.SharpZipLib.csproj"> | ||
<Project>{0e7413ff-eb9e-4714-acf2-be3a6a7b2ffd}</Project> | ||
<Name>ICSharpCode.SharpZipLib</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\monodoc\monodoc.csproj"> | ||
<Project>{6e644802-b579-4037-9809-9cf4c7172c9d}</Project> | ||
<Name>monodoc</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\monodoc\monodoc.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup /> | ||
</Project> |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ namespace Monodoc.Generators.Html | |
public class Ecmaspec2Html : IHtmlExporter | ||
{ | ||
static string css_ecmaspec; | ||
static XslTransform ecma_transform; | ||
static XslCompiledTransform ecma_transform; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updating obsoleted API |
||
static XsltArgumentList args = new XsltArgumentList(); | ||
|
||
public string CssCode { | ||
|
@@ -45,7 +45,7 @@ public string Export (string input, Dictionary<string, string> extraArgs) | |
static string Htmlize (XPathDocument ecma_xml) | ||
{ | ||
if (ecma_transform == null){ | ||
ecma_transform = new XslTransform (); | ||
ecma_transform = new XslCompiledTransform (); | ||
System.Reflection.Assembly assembly = System.Reflection.Assembly.GetAssembly (typeof (Ecmaspec2Html)); | ||
Stream stream; | ||
stream = assembly.GetManifestResourceStream ("ecmaspec-html-css.xsl"); | ||
|
@@ -58,7 +58,7 @@ static string Htmlize (XPathDocument ecma_xml) | |
if (ecma_xml == null) return ""; | ||
|
||
StringWriter output = new StringWriter (); | ||
ecma_transform.Transform (ecma_xml, args, output, null); | ||
ecma_transform.Transform (ecma_xml, args, output); | ||
|
||
return output.ToString (); | ||
} | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SDK style projects are much nicer to hand edit :) |
||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>8.0.30703</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<RootNamespace>Monodoc.Test</RootNamespace> | ||
<AssemblyName>Monodoc.Test</AssemblyName> | ||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | ||
<TargetFramework>net461</TargetFramework> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug</OutputPath> | ||
<DefineConstants>DEBUG;</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="nunit.framework, Version=3.6.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL"> | ||
<HintPath>..\..\packages\NUnit.3.6.1\lib\net45\nunit.framework.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Monodoc\EcmaDocTests.cs" /> | ||
<Compile Include="Monodoc\HelpSourceTests.cs" /> | ||
<Compile Include="Monodoc\NodeTest.cs" /> | ||
<Compile Include="Monodoc\RootTreeTest.cs" /> | ||
<Compile Include="Monodoc\SettingsTest.cs" /> | ||
<Compile Include="Monodoc\TreeTest.cs" /> | ||
<Compile Include="Monodoc.Ecma\EcmaUrlTests.cs" /> | ||
<Compile Include="Monodoc.Generators\RawGeneratorTests.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="packages.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\monodoc.csproj"> | ||
<Project>{6e644802-b579-4037-9809-9cf4c7172c9d}</Project> | ||
<Name>monodoc</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> | ||
<!-- PrivateAssets=all is to keep VSMac happy by copying NUnit.Framework.dll --> | ||
<PackageReference Include="NUnit" Version="3.10.1" PrivateAssets="all" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" /> | ||
<ProjectReference Include="..\monodoc.csproj" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | ||
</Project> |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This does an MSBuild NuGet restore