Browse Source

Remove Newtonsoft.Json dependency from Abp.Core package.

pull/183/head
Halil İbrahim Kalkan 8 years ago
parent
commit
49c139fe8b
  1. 1
      src/Volo.Abp.Core/Volo.Abp.Core.csproj
  2. 4
      src/Volo.Abp.Json/Volo.Abp.Json.csproj
  3. 6
      src/Volo.Abp.Localization/Volo.Abp.Localization.csproj

1
src/Volo.Abp.Core/Volo.Abp.Core.csproj

@ -25,7 +25,6 @@
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
<PackageReference Include="JetBrains.Annotations" Version="11.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="Nito.AsyncEx.Coordination" Version="1.0.2" />
<PackageReference Include="Nito.AsyncEx.Context" Version="1.1.0" />
</ItemGroup>

4
src/Volo.Abp.Json/Volo.Abp.Json.csproj

@ -13,6 +13,10 @@
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Volo.Abp.Core\Volo.Abp.Core.csproj" />
<ProjectReference Include="..\Volo.Abp.Timing\Volo.Abp.Timing.csproj" />

6
src/Volo.Abp.Localization/Volo.Abp.Localization.csproj

@ -12,11 +12,15 @@
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Volo\Abp\Localization\Resources\**\*.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Volo.Abp.Core\Volo.Abp.Core.csproj" />
<ProjectReference Include="..\Volo.Abp.VirtualFileSystem\Volo.Abp.VirtualFileSystem.csproj" />

Loading…
Cancel
Save