|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 5 | + <ProduceAssemblyReference>true</ProduceAssemblyReference> |
| 6 | + </PropertyGroup> |
| 7 | + |
| 8 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 9 | + <DebugType>pdbonly</DebugType> |
| 10 | + <DebugSymbols>true</DebugSymbols> |
| 11 | + <LangVersion>7.3</LangVersion> |
| 12 | + </PropertyGroup> |
| 13 | + |
| 14 | + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
| 15 | + <LangVersion>7.3</LangVersion> |
| 16 | + </PropertyGroup> |
| 17 | + <ItemGroup> |
| 18 | + <PackageReference Include="Xamarin.Forms" Version="4.3.0.851321-pre3" /> |
| 19 | + <PackageReference Include="Xamarin.Essentials" Version="1.3.1" /> |
| 20 | + <PackageReference Include="Xam.Plugins.Settings" Version="4.0.0.10-beta" /> |
| 21 | + <PackageReference Include="ReactiveUI" Version="10.5.7" /> |
| 22 | + <PackageReference Include="NBitcoin" Version="4.2.15" /> |
| 23 | + <PackageReference Include="ReactiveUI.XamForms" Version="10.5.7" /> |
| 24 | + </ItemGroup> |
| 25 | + <ItemGroup> |
| 26 | + <Compile Remove="Crypto\StringCipher.cs" /> |
| 27 | + <Compile Remove="Crypto\TokenGenerator.cs" /> |
| 28 | + <Compile Remove="Helpers\ByteArrayBuilder.cs" /> |
| 29 | + <Compile Remove="Helpers\ByteHelpers.cs" /> |
| 30 | + <Compile Remove="Helpers\Constants.cs" /> |
| 31 | + <Compile Remove="JsonConverters\BigIntegerJsonConverter.cs" /> |
| 32 | + <Compile Remove="JsonConverters\BitcoinAddressJsonConverter.cs" /> |
| 33 | + <Compile Remove="JsonConverters\OutPointJsonConverter.cs" /> |
| 34 | + <Compile Remove="JsonConverters\PubKeyJsonConverter.cs" /> |
| 35 | + <Compile Remove="JsonConverters\ScriptJsonConverter.cs" /> |
| 36 | + <Compile Remove="JsonConverters\TransactionJsonConverter.cs" /> |
| 37 | + <Compile Remove="JsonConverters\Uint256JsonConverter.cs" /> |
| 38 | + <Compile Remove="JsonConverters\UnblindedSignatureJsonConverter.cs" /> |
| 39 | + <Compile Remove="Logging\LogLevel.cs" /> |
| 40 | + <Compile Remove="Logging\LogMode.cs" /> |
| 41 | + <Compile Remove="Logging\Logger.cs" /> |
| 42 | + <Compile Remove="Nito\AsyncEx\AsyncLock.cs" /> |
| 43 | + <Compile Remove="Nito\AsyncEx\AsyncMutex.cs" /> |
| 44 | + <Compile Remove="Nito\AsyncEx\AsyncWaitQueueExtensions.cs" /> |
| 45 | + <Compile Remove="Nito\AsyncEx\AwaitableDisposable.cs" /> |
| 46 | + <Compile Remove="Nito\AsyncEx\DefaultAsyncWaitQueue.cs" /> |
| 47 | + <Compile Remove="Nito\AsyncEx\ExceptionHelpers.cs" /> |
| 48 | + <Compile Remove="Nito\AsyncEx\IAsyncWaitQueue.cs" /> |
| 49 | + <Compile Remove="Nito\AsyncEx\IdManager.cs" /> |
| 50 | + <Compile Remove="Nito\AsyncEx\TaskCompletionSourceExtensions.cs" /> |
| 51 | + <Compile Remove="Nito\AsyncEx\Synchronous\SynchronousTaskExtensions.cs" /> |
| 52 | + <Compile Remove="Nito\Collections\CollectionHelpers.cs" /> |
| 53 | + <Compile Remove="Nito\Collections\Deque.cs" /> |
| 54 | + <Compile Remove="Nito\Disposables\SingleDisposable.cs" /> |
| 55 | + <Compile Remove="Nito\Disposables\Internals\BoundAction.cs" /> |
| 56 | + <Compile Remove="BlockCypher\Models\BlockCypherGeneralInformation.cs" /> |
| 57 | + <Compile Remove="UiConfig.cs" /> |
| 58 | + </ItemGroup> |
| 59 | + <ItemGroup> |
| 60 | + <Folder Include="Navigation\" /> |
| 61 | + <Folder Include="Views\" /> |
| 62 | + <Folder Include="Controllers\" /> |
| 63 | + <Folder Include="ViewModels\" /> |
| 64 | + <Folder Include="Models\" /> |
| 65 | + </ItemGroup> |
| 66 | + <ItemGroup> |
| 67 | + <Compile Update="Views\MainPage.xaml.cs"> |
| 68 | + <DependentUpon>MainPage.xaml</DependentUpon> |
| 69 | + </Compile> |
| 70 | + <Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="Views\Templates\CoinViewTemplate.xaml.cs"> |
| 71 | + <DependentUpon>CoinViewTemplate.xaml</DependentUpon> |
| 72 | + </Compile> |
| 73 | + </ItemGroup> |
| 74 | + <ItemGroup> |
| 75 | + <None Remove="CustomBuildActions.targets" /> |
| 76 | + </ItemGroup> |
| 77 | + <ItemGroup> |
| 78 | + <EmbeddedResource Remove="Views\Templates\CoinViewTemplate %28copy%29.xaml" /> |
| 79 | + </ItemGroup> |
| 80 | + <ItemGroup> |
| 81 | + <ProjectReference Include="..\WalletWasabi\WalletWasabi.Standard\WalletWasabi.Standard.csproj" /> |
| 82 | + </ItemGroup> |
| 83 | +</Project> |
0 commit comments