BitcoinTransactionTool Csproj
BitcoinTransactionTool Csproj
>
<Project ToolsVersion="12.0" DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\
Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$
(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0BD41339-E736-48B1-9BA4-64DB464E954D}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BitcoinTransactionTool</RootNamespace>
<AssemblyName>BitcoinTransactionTool</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-
BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<TargetFrameworkProfile />
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>0.11.0.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Bitcoin Icon.png.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>851444639A10F3B1E23C90549E575E65ECF3CD0E</
ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>BitcoinTransactionTool_TemporaryKey.pfx</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>true</SignManifests>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral,
PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</
HintPath>
<Private>True</Private>
</Reference>
<Reference Include="QRCoder, Version=1.2.2.0, Culture=neutral,
processorArchitecture=MSIL">
<HintPath>..\packages\QRCoder.1.2.2\lib\net40\QRCoder.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Numerics" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral,
processorArchitecture=MSIL">
<HintPath>..\packages\QRCoder.1.2.2\lib\net40\UnityEngine.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="Backend\Address.cs" />
<Compile Include="Backend\Blockchain\ITransaction.cs" />
<Compile Include="Backend\Blockchain\Outpoint.cs" />
<Compile Include="Backend\Blockchain\Scripts\IPubkeyScript.cs" />
<Compile Include="Backend\Blockchain\Scripts\IRedeemScript.cs" />
<Compile Include="Backend\Blockchain\Scripts\IScript.cs" />
<Compile Include="Backend\Blockchain\Scripts\ISignatureScript.cs" />
<Compile Include="Backend\Blockchain\Scripts\IWitnessScript.cs" />
<Compile Include="Backend\Blockchain\Scripts\OP.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\ArithmeticOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\BaseOperation.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\CheckSigOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\CryptoOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\EqualityOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\FlowControlOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\IOpData.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\IOperation.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\LockTimeOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\NotRunableOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\OpData.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\OpHelper.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\PushDataOp.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\ReturnOp.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\SimpleRunableOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\SizeOp.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\StackOps.cs" />
<Compile Include="Backend\Blockchain\Scripts\Operations\VerifyOp.cs" />
<Compile Include="Backend\Blockchain\Scripts\PubkeyScript.cs" />
<Compile Include="Backend\Blockchain\Scripts\RedeemScript.cs" />
<Compile Include="Backend\Blockchain\Scripts\Script.cs" />
<Compile Include="Backend\Blockchain\Scripts\ScriptTypeEnums.cs" />
<Compile Include="Backend\Blockchain\Scripts\SignatureScript.cs" />
<Compile Include="Backend\Blockchain\Scripts\WitnessScript.cs" />
<Compile Include="Backend\Blockchain\Transaction.cs" />
<Compile Include="Backend\Blockchain\TxIn.cs" />
<Compile Include="Backend\Blockchain\TxOut.cs" />
<Compile Include="Backend\Constants.cs" />
<Compile Include="Backend\JsonConverterHelper.cs" />
<Compile Include="Backend\CompactInt.cs" />
<Compile Include="Backend\Cryptography\Hashing\IHashFunction.cs" />
<Compile Include="Backend\Cryptography\Hashing\Ripemd160.cs" />
<Compile Include="Backend\Cryptography\Hashing\Ripemd160Sha256.cs" />
<Compile Include="Backend\Cryptography\Hashing\Sha1.cs" />
<Compile Include="Backend\Cryptography\Hashing\Sha256.cs" />
<Compile Include="Backend\Encoders\Base16.cs" />
<Compile Include="Backend\Encoders\Base43.cs" />
<Compile Include="Backend\Encoders\Base58.cs" />
<Compile Include="Backend\Encoders\Bech32.cs" />
<Compile Include="Backend\ExtentionsAndHelpers.cs" />
<Compile Include="Backend\IDeserializable.cs" />
<Compile Include="Backend\LockTime.cs" />
<Compile Include="Backend\MVVM\BindableCommand.cs" />
<Compile Include="Backend\MVVM\DependsOnPropertyAttribute.cs" />
<Compile Include="Backend\MVVM\InpcBase.cs" />
<Compile Include="Backend\MVVM\ValidatableBase.cs" />
<Compile Include="Backend\MVVM\ViewModelBase.cs" />
<Compile Include="Backend\StackInt.cs" />
<Compile Include="Models\BitcoinAddress.cs" />
<Compile Include="Models\ButtonModel.cs" />
<Compile Include="Models\PublicKeyModel.cs" />
<Compile Include="Models\UTXO.cs" />
<Compile Include="Services\Api.cs" />
<Compile Include="Services\ErrorCollection.cs" />
<Compile Include="Services\OperationConverter.cs" />
<Compile Include="Services\PushServices.cs" />
<Compile Include="Services\Response.cs" />
<Compile Include="Services\ScriptReader.cs" />
<Compile Include="Services\ScriptToStringConverter.cs" />
<Compile Include="Services\TransactionServices\BlockchainInfo.cs" />
<Compile Include="Services\TransactionServices\BlockCypher.cs" />
<Compile Include="Services\TxBuilder.cs" />
<Compile Include="ViewModels\MainWindowViewModel.cs" />
<Compile Include="Services\WindowManager.cs" />
<Compile Include="ViewModels\QrViewModel.cs" />
<Compile Include="ViewModels\ScrAddressViewModel.cs" />
<Compile Include="ViewModels\ScrArbitraryDataViewModel.cs" />
<Compile Include="ViewModels\ScrHashCollisionViewModel.cs" />
<Compile Include="ViewModels\ScriptViewModel.cs" />
<Compile Include="ViewModels\ScriptVMBase.cs" />
<Compile Include="ViewModels\ScrMultiSigViewModel.cs" />
<Compile Include="ViewModels\TransactionEditViewModel.cs" />
<Compile Include="ViewModels\TxJsonViewModel.cs" />
<Compile Include="Views\QrView.xaml.cs">
<DependentUpon>QrView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\ScrAddressView.xaml.cs">
<DependentUpon>ScrAddressView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\ScrArbitraryDataView.xaml.cs">
<DependentUpon>ScrArbitraryDataView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\ScrHashCollisionView.xaml.cs">
<DependentUpon>ScrHashCollisionView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\ScriptView.xaml.cs">
<DependentUpon>ScriptView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\ScrMultiSigView.xaml.cs">
<DependentUpon>ScrMultiSigView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\TransactionEditView.xaml.cs">
<DependentUpon>TransactionEditView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\TxJsonView.xaml.cs">
<DependentUpon>TxJsonView.xaml</DependentUpon>
</Compile>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Page Include="Views\QrView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Views\ScrAddressView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Views\ScrArbitraryDataView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Views\ScrHashCollisionView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Views\ScriptView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Views\ScrMultiSigView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Views\TransactionEditView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Views\TxJsonView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="BitcoinTransactionTool_TemporaryKey.pfx" />
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CommonLibrary\CommonLibrary.csproj">
<Project>{3c4402e4-d931-4996-86fb-55ff6f9e7ebd}</Project>
<Name>CommonLibrary</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Resource Include="Bitcoin Icon.png.ico" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.6">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.6 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below
and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>