Skip to content

Commit 52f24b7

Browse files
committed
IncludeSymbols (fixed #104)
<DebugType>full</DebugType> <IncludeSource>True</IncludeSource> <IncludeSymbols>True</IncludeSymbols>
1 parent e6101dc commit 52f24b7

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

System.Linq.Dynamic.Core.sln

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26730.10
4+
VisualStudioVersion = 15.0.26730.12
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{8463ED7E-69FB-49AE-85CF-0791AFD98E38}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{DBD7D9B6-FCC7-4650-91AF-E6457573A68F}"
9+
ProjectSection(SolutionItems) = preProject
10+
src\_build nuget - 2017.cmd = src\_build nuget - 2017.cmd
11+
src\_build nuget.cmd = src\_build nuget.cmd
12+
EndProjectSection
913
EndProject
1014
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{25E69107-C89E-4807-AA31-C49423F0F1E3}"
1115
ProjectSection(SolutionItems) = preProject

src/EntityFramework.DynamicLinq/EntityFramework.DynamicLinq.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
2626
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
2727
<DefaultLanguage>en-us</DefaultLanguage>
28+
<DebugType>full</DebugType>
29+
<IncludeSource>True</IncludeSource>
30+
<IncludeSymbols>True</IncludeSymbols>
31+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2832
</PropertyGroup>
2933

3034
<ItemGroup>

src/Microsoft.EntityFrameworkCore.DynamicLinq/Microsoft.EntityFrameworkCore.DynamicLinq.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
2828
<DefaultLanguage>en-us</DefaultLanguage>
2929
<DebugType>full</DebugType>
30+
<IncludeSource>True</IncludeSource>
31+
<IncludeSymbols>True</IncludeSymbols>
32+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
3033
</PropertyGroup>
3134

3235
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">

src/System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
2828
<DefaultLanguage>en-us</DefaultLanguage>
2929
<DebugType>full</DebugType>
30+
<IncludeSource>True</IncludeSource>
31+
<IncludeSymbols>True</IncludeSymbols>
32+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
3033
</PropertyGroup>
3134

3235
<PropertyGroup Condition=" '$(TargetFramework)' == 'net20' ">

src/_build nuget - 2017.cmd

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
rem dotnet restore System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj
21
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\msbuild.exe" System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj /p:Configuration=Release
32
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\msbuild.exe" EntityFramework.DynamicLinq\EntityFramework.DynamicLinq.csproj /p:Configuration=Release
43
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\msbuild.exe" Microsoft.EntityFrameworkCore.DynamicLinq\Microsoft.EntityFrameworkCore.DynamicLinq.csproj /p:Configuration=Release
5-
pause
4+
pause

src/_build nuget.cmd

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
dotnet restore
2-
dotnet pack -c Release System.Linq.Dynamic.Core\project.json
3-
dotnet pack -c Release EntityFramework.DynamicLinq\project.json
4-
dotnet pack -c Release Microsoft.EntityFrameworkCore.DynamicLinq\project.json
5-
pause
1+
dotnet pack -c Release System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj --include-symbols
2+
dotnet pack -c Release EntityFramework.DynamicLinq\EntityFramework.DynamicLinq.csproj --include-symbols
3+
dotnet pack -c Release Microsoft.EntityFrameworkCore.DynamicLinq\Microsoft.EntityFrameworkCore.DynamicLinq.csproj --include-symbols
4+
pause

0 commit comments

Comments
 (0)