Add NuGet and project references to .NET Core sample project

This commit is contained in:
Andreas Weizel 2021-07-16 00:25:54 +02:00
Родитель 2c2e18ace8
Коммит 572ae4e2de
4 изменённых файлов: 15 добавлений и 0 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -1,5 +1,6 @@
bin/
obj/
packages/
/ICSharpCode.Decompiler/Properties/AssemblyInfo.cs
/ILSpy/Properties/AssemblyInfo.cs

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

@ -30,6 +30,9 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
@ -43,5 +46,8 @@
<Compile Include="Class3.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

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

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net461" />
</packages>

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

@ -8,4 +8,8 @@
<PackageReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ClassLibraryStd4.NETStandard.2.0\ClassLibrary4.NETStandard.2.0.csproj" />
</ItemGroup>
</Project>