Skip to content

Commit 33fed0e

Browse files
Nick CraverNickCraver
authored andcommitted
Trim down references in .csproj
1 parent e95c1f0 commit 33fed0e

File tree

13 files changed

+6
-59
lines changed

13 files changed

+6
-59
lines changed

samples/Samples.AspNetCore3/Samples.AspNetCore3.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
<ProjectReference Include="..\..\src\MiniProfiler.EntityFrameworkCore\MiniProfiler.EntityFrameworkCore.csproj" />
99
<ProjectReference Include="..\..\src\MiniProfiler.Providers.SqlServer\MiniProfiler.Providers.SqlServer.csproj" />
1010
<ProjectReference Include="..\..\src\MiniProfiler.Providers.Sqlite\MiniProfiler.Providers.Sqlite.csproj" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0-preview9.19423.6" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0-rc1.19456.14" />
1212
</ItemGroup>
1313
</Project>

src/MiniProfiler.AspNetCore/MiniProfiler.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1414
<FrameworkReference Include="Microsoft.AspNetCore.App" />
15-
<PackageReference Include="System.Text.Json" Version="4.6.0-preview9.19421.4" />
15+
<PackageReference Include="System.Text.Json" Version="4.6.0-rc1.19456.4" />
1616
</ItemGroup>
1717
<ItemGroup Condition="'$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0'">
1818
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.0.0" />
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyName>MiniProfiler.EF6</AssemblyName>
4+
<RootNamespace>StackExchange.Profiling.Data</RootNamespace>
45
<Title>MiniProfiler for Entity Framework 6</Title>
56
<Description>MiniProfiler: Integration for Entity Framework 6</Description>
67
<Authors>Jarrod Dixon, Yaakov Ellis, Nick Craver</Authors>
78
<PackageTags>Entity Framework;Entity Framework 6;$(PackageBaseTags)</PackageTags>
89
<TargetFrameworks>net461</TargetFrameworks>
910
</PropertyGroup>
10-
<PropertyGroup Label="Configuration">
11-
<RootNamespace>StackExchange.Profiling.Data</RootNamespace>
12-
</PropertyGroup>
1311
<ItemGroup>
1412
<ProjectReference Include="..\MiniProfiler.Shared\MiniProfiler.Shared.csproj" />
1513
<PackageReference Include="EntityFramework" Version="6.2.0" />
16-
<Reference Include="System" />
17-
<Reference Include="System.Data" />
1814
</ItemGroup>
1915
</Project>
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyName>MiniProfiler.EFC7</AssemblyName>
4+
<RootNamespace>StackExchange.Profiling.Data</RootNamespace>
45
<Title>MiniProfiler for Entity Framework Classic 7</Title>
56
<Description>MiniProfiler: Integration for Entity Framework Classic 7</Description>
67
<Authors>Jarrod Dixon, Yaakov Ellis, Nick Craver, Jan Krynicky</Authors>
78
<PackageTags>Entity Framework;Entity Framework Classic 7;$(PackageBaseTags)</PackageTags>
89
<TargetFrameworks>net461</TargetFrameworks>
910
</PropertyGroup>
10-
<PropertyGroup Label="Configuration">
11-
<RootNamespace>StackExchange.Profiling.Data</RootNamespace>
12-
</PropertyGroup>
1311
<ItemGroup>
1412
<ProjectReference Include="..\MiniProfiler.Shared\MiniProfiler.Shared.csproj" />
1513
<PackageReference Include="Z.EntityFramework.Classic" Version="7.0.0" />
16-
<Reference Include="System" />
17-
<Reference Include="System.Data" />
1814
</ItemGroup>
1915
</Project>

src/MiniProfiler.EntityFrameworkCore/MiniProfiler.EntityFrameworkCore.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyName>MiniProfiler.EntityFrameworkCore</AssemblyName>
4+
<RootNamespace>StackExchange.Profiling.Data</RootNamespace>
45
<Title>MiniProfiler for Entity Framework Core</Title>
56
<Description>MiniProfiler: Integration for Entity Framework Core</Description>
67
<Authors>Nick Craver</Authors>
78
<PackageTags>Entity Framework;Entity Framework Core;$(PackageBaseTags)</PackageTags>
89
<TargetFrameworks>netstandard2.0</TargetFrameworks>
910
</PropertyGroup>
10-
<PropertyGroup Label="Configuration">
11-
<RootNamespace>StackExchange.Profiling.Data</RootNamespace>
12-
</PropertyGroup>
1311
<ItemGroup>
1412
<ProjectReference Include="..\MiniProfiler.Shared\MiniProfiler.Shared.csproj" />
1513
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="2.0.0" />
Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyName>MiniProfiler.Mvc5</AssemblyName>
4+
<RootNamespace>StackExchange.Profiling.Mvc</RootNamespace>
45
<Title>MiniProfiler for MVC 5</Title>
56
<Description>MiniProfiler: Extensions and helpers for ASP.NET MVC 5+ (non-.NET Core)</Description>
67
<Authors>Marc Gravell, Jarrod Dixon, Yaakov Ellis, Nick Craver</Authors>
78
<PackageTags>ASP.NET;MVC;MVC 5;$(PackageBaseTags)</PackageTags>
89
<TargetFrameworks>net461</TargetFrameworks>
910
</PropertyGroup>
10-
<PropertyGroup Label="Configuration">
11-
<RootNamespace>StackExchange.Profiling.Mvc</RootNamespace>
12-
</PropertyGroup>
1311
<ItemGroup>
1412
<ProjectReference Include="..\MiniProfiler\MiniProfiler.csproj" />
1513
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.3" />
16-
<Reference Include="System" />
17-
<Reference Include="System.Core" />
1814
<Reference Include="System.Web" />
19-
<Reference Include="System.Xml.Linq" />
20-
<Reference Include="System.Data.DataSetExtensions" />
21-
<Reference Include="Microsoft.CSharp" />
22-
<Reference Include="System.Data" />
23-
<Reference Include="System.Xml" />
2415
</ItemGroup>
2516
</Project>

src/MiniProfiler.Providers.MongoDB/MiniProfiler.Providers.MongoDB.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
99
<AssemblyOriginatorKeyFile>..\..\miniprofiler.snk</AssemblyOriginatorKeyFile>
1010
<SignAssembly>false</SignAssembly>
11-
<Company>Nick Craver, Roger Calaf</Company>
1211
</PropertyGroup>
1312
<ItemGroup>
1413
<ProjectReference Include="..\MiniProfiler.Shared\MiniProfiler.Shared.csproj" />

src/MiniProfiler.Providers.RavenDB/MiniProfiler.Providers.RavenDB.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,4 @@
1212
<ProjectReference Include="..\MiniProfiler.Shared\MiniProfiler.Shared.csproj" />
1313
<PackageReference Include="RavenDB.Client" Version="3.5.4" />
1414
</ItemGroup>
15-
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
16-
<Reference Include="System" />
17-
<Reference Include="System.Net.Http" />
18-
<Reference Include="System.Web" />
19-
</ItemGroup>
2015
</Project>

src/MiniProfiler.Providers.Redis/MiniProfiler.Providers.Redis.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,4 @@
1212
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.6" />
1313
<PackageReference Include="protobuf-net" Version="2.3.2" />
1414
</ItemGroup>
15-
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
16-
<Reference Include="System" />
17-
</ItemGroup>
1815
</Project>

src/MiniProfiler.Providers.SqlServer/MiniProfiler.Providers.SqlServer.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,4 @@
1111
<ProjectReference Include="..\MiniProfiler.Shared\MiniProfiler.Shared.csproj" />
1212
<PackageReference Include="Dapper.StrongName" Version="1.50.2" />
1313
</ItemGroup>
14-
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
15-
<Reference Include="Microsoft.CSharp" />
16-
<Reference Include="System" />
17-
<Reference Include="System.Data" />
18-
</ItemGroup>
1914
</Project>

0 commit comments

Comments
 (0)