Skip to content

Commit e2affc3

Browse files
committed
[TrimmableTypeMap] Scanner core + unit test slice
1 parent 4282327 commit e2affc3

11 files changed

Lines changed: 3091 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<Import Project="..\..\Configuration.props" />
3+
4+
<PropertyGroup>
5+
<TargetFramework>$(TargetFrameworkNETStandard)</TargetFramework>
6+
<LangVersion>latest</LangVersion>
7+
<Nullable>enable</Nullable>
8+
<WarningsAsErrors>Nullable</WarningsAsErrors>
9+
<RootNamespace>Microsoft.Android.Sdk.TrimmableTypeMap</RootNamespace>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="System.IO.Hashing" Version="$(SystemIOHashingPackageVersion)" />
14+
<PackageReference Include="System.Reflection.Metadata" Version="9.0.3" />
15+
<InternalsVisibleTo Include="Microsoft.Android.Sdk.TrimmableTypeMap.Tests" />
16+
<InternalsVisibleTo Include="Microsoft.Android.Sdk.TrimmableTypeMap.IntegrationTests" />
17+
</ItemGroup>
18+
19+
</Project>

0 commit comments

Comments
 (0)