-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathIL2CPU.Debug.Symbols.csproj
More file actions
59 lines (53 loc) · 2.75 KB
/
IL2CPU.Debug.Symbols.csproj
File metadata and controls
59 lines (53 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageDescription>IL2CPU debug symbols APIs.</PackageDescription>
<IsPackable>True</IsPackable>
<Configurations>Debug;Release;TEST</Configurations>
<EnableDefaultItems>false</EnableDefaultItems>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="SQLite.sql" />
<EmbeddedResource Include="SQLiteIndexes.sql" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper.StrongName" Version="2.0.90" />
<PackageReference Include="SQLitePCLRaw.core" Version="2.0.6" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.0.6" />
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="6.0.5" />
<PackageReference Include="Microsoft.DiaSymReader" Version="1.3.0" />
<PackageReference Include="Microsoft.DiaSymReader.PortablePdb" Version="1.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SQLitePCLRaw.lib.e_sqlite3.linux" Version="1.1.14" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="System.IO.MemoryMappedFiles" Version="4.3.0" />
<PackageReference Include="System.Reflection.Metadata" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="CacheHelper.cs" />
<Compile Include="DebugInfo.cs" />
<Compile Include="DebugModel.cs" />
<Compile Include="DebugSymbolReader.cs" />
<Compile Include="LocalTypeGenericContext.cs" />
<Compile Include="LocalTypeProvider.cs" />
<Compile Include="ObjDump.cs" />
<Compile Include="ObjectReader.cs" />
<Compile Include="SourceInfo.cs" />
<Compile Include="SQL.cs" />
<Compile Include="SqliteBulkCopy.cs" />
<Compile Include="Hashing/TypeHashingAlgorithms.cs" />
<Compile Include="Metadata/CachingMetadataStringDecoder.cs" />
<Compile Include="Metadata/MetadataHelper.cs" />
<Compile Include="Pdb/ILSequencePoint.cs" />
<Compile Include="Pdb/PdbSymbolReader.cs" />
<Compile Include="Pdb/PortablePdbSymbolReader.cs" />
<Compile Include="Pdb/UnmanagedPdbSymbolReader.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Cosmos\Resources\Dependencies\DapperExtensions.StrongName\DapperExtensions.StrongName.csproj" />
</ItemGroup>
</Project>