mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
add target framework to PropertyGroup conditional
This commit is contained in:
parent
55d050fca7
commit
e7e00e4ebf
1 changed files with 5 additions and 1 deletions
|
@ -8,10 +8,14 @@
|
|||
<Configurations>Debug;Release;FDroid</Configurations>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'FDroid|AnyCPU'">
|
||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)' == 'FDroid|netstandard2.0|AnyCPU'">
|
||||
<DefineConstants>TRACE;FDROID;NETSTANDARD2_0</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)' == 'FDroid|net471|AnyCPU'">
|
||||
<DefineConstants>TRACE;FDROID;NET471</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="Resources\public_suffix_list.dat" />
|
||||
</ItemGroup>
|
||||
|
|
Loading…
Reference in a new issue