This commit is contained in:
GuiNerd
2019-09-14 12:59:04 -03:00
parent f12b7d0e8b
commit 3d7dcb8823
1944 changed files with 179636 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<Application xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Calculadora.App">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,32 @@
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
[assembly: XamlCompilation(XamlCompilationOptions.Compile)]
namespace Calculadora
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new MainPage();
}
protected override void OnStart()
{
// Handle when your app starts
}
protected override void OnSleep()
{
// Handle when your app sleeps
}
protected override void OnResume()
{
// Handle when your app resumes
}
}
}

View File

@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="3.4.0.1008975" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Calculadora"
x:Class="Calculadora.MainPage">
<ContentPage.Content>
<Grid x:Name="controlGrid" RowSpacing="1" ColumnSpacing="1">
<Grid.RowDefinitions>
<RowDefinition Height="60" />
<RowDefinition Height="20" />
<RowDefinition Height="60" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label x:Name="firstNumber" Text="" Grid.Row="0" HorizontalTextAlignment="End" VerticalTextAlignment="End" TextColor="Black" FontSize="40" Grid.ColumnSpan="4"/>
<Label x:Name="mathOperator" Text="" Grid.Row="1" HorizontalTextAlignment="End" VerticalTextAlignment="Center" TextColor="Black" FontSize="20" Grid.ColumnSpan="4"/>
<Label x:Name="secondNumber" Text="" Grid.Row="2" HorizontalTextAlignment="End" VerticalTextAlignment="End" TextColor="Black" FontSize="40" Grid.ColumnSpan="4"/>
<Button Text = "÷" Grid.Row="3" Grid.Column="0" Clicked="OnSelectOperator" />
<Button Text = "×" Grid.Row="3" Grid.Column="1" Clicked="OnSelectOperator" />
<Button Text = "DEL" Grid.Row="3" Grid.Column="2" Grid.ColumnSpan="2" Clicked="OnClear" />
<Button Text = "7" Grid.Row="4" Grid.Column="0" Clicked="OnAddNumber" />
<Button Text = "8" Grid.Row="4" Grid.Column="1" Clicked="OnAddNumber" />
<Button Text = "9" Grid.Row="4" Grid.Column="2" Clicked="OnAddNumber" />
<Button Text = "-" Grid.Row="4" Grid.Column="3" Clicked="OnSelectOperator" />
<Button Text = "4" Grid.Row="5" Grid.Column="0" Clicked="OnAddNumber" />
<Button Text = "5" Grid.Row="5" Grid.Column="1" Clicked="OnAddNumber" />
<Button Text = "6" Grid.Row="5" Grid.Column="2" Clicked="OnAddNumber" />
<Button Text = "+" Grid.Row="5" Grid.Column="3" Clicked="OnSelectOperator" />
<Button Text = "1" Grid.Row="6" Grid.Column="0" Clicked="OnAddNumber" />
<Button Text = "2" Grid.Row="6" Grid.Column="1" Clicked="OnAddNumber" />
<Button Text = "3" Grid.Row="6" Grid.Column="2" Clicked="OnAddNumber" />
<Button Text = "=" Grid.Row="6" Grid.Column="3" Grid.RowSpan="2" Clicked="OnCalculate" />
<Button Text = "0" Grid.Row="7" Grid.Column="0" Grid.ColumnSpan="2" Clicked="OnAddNumber" />
<Button Text = "," Grid.Row="7" Grid.Column="2" Clicked="OnAddNumber" />
</Grid>
</ContentPage.Content>
</ContentPage>

View File

@ -0,0 +1,78 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace Calculadora
{
public partial class MainPage : ContentPage
{
int calcState = 1;
double l_firstNumber = 0;
double l_secondNumber = 0;
double result = 0;
public MainPage()
{
InitializeComponent();
}
void OnAddNumber(object sender, EventArgs args)
{
if (calcState <= 1)
{
Button iButton = (Button)sender;
firstNumber.Text = firstNumber.Text + iButton.Text;
} else
{
Button iButton = (Button)sender;
secondNumber.Text = secondNumber.Text + iButton.Text;
}
}
void OnSelectOperator(object sender, EventArgs args)
{
Button iButton = (Button)sender;
mathOperator.Text = iButton.Text;
calcState++;
}
void OnCalculate(object sender, EventArgs args)
{
l_firstNumber = double.Parse(firstNumber.Text);
l_secondNumber = double.Parse(secondNumber.Text);
switch (mathOperator.Text)
{
case "÷":
result = l_firstNumber / l_secondNumber;
break;
case "×":
result = l_firstNumber * l_secondNumber;
break;
case "-":
result = l_firstNumber - l_secondNumber;
break;
case "+":
result = l_firstNumber + l_secondNumber;
break;
}
firstNumber.Text = Convert.ToString(result);
mathOperator.Text = "";
secondNumber.Text = "";
}
void OnClear(object sender, EventArgs args)
{
firstNumber.Text = "";
mathOperator.Text = "";
secondNumber.Text = "";
calcState = 1;
}
}
}

View File

@ -0,0 +1,71 @@
{
"runtimeTarget": {
"name": ".NETStandard,Version=v2.0/",
"signature": "77ac45fa75810ef28ecf58b94804c46f567cccb4"
},
"compilationOptions": {},
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"Calculadora/1.0.0": {
"dependencies": {
"NETStandard.Library": "2.0.3",
"Xamarin.Forms": "3.4.0.1008975"
},
"runtime": {
"Calculadora.dll": {}
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"NETStandard.Library/2.0.3": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"Xamarin.Forms/3.4.0.1008975": {
"runtime": {
"lib/netstandard2.0/Xamarin.Forms.Core.dll": {
"assemblyVersion": "2.0.0.0",
"fileVersion": "2.0.0.0"
},
"lib/netstandard2.0/Xamarin.Forms.Platform.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
},
"lib/netstandard2.0/Xamarin.Forms.Xaml.dll": {
"assemblyVersion": "2.0.0.0",
"fileVersion": "2.0.0.0"
}
}
}
}
},
"libraries": {
"Calculadora/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
"NETStandard.Library/2.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
"path": "netstandard.library/2.0.3",
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
},
"Xamarin.Forms/3.4.0.1008975": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tM9syeev45u92OFENGjq+Zw8WiEwLJFiXe317XpL9SY2RRk9sm2fc1lDVjzwz0da+5ZP5fi24NAPsPQdxBdMwQ==",
"path": "xamarin.forms/3.4.0.1008975",
"hashPath": "xamarin.forms.3.4.0.1008975.nupkg.sha512"
}
}
}

View File

@ -0,0 +1,5 @@
{
"version": 1,
"dgSpecHash": "qxEqqJOuSY8CWkIE4n9H/KkBU846WFfnp2VnFOKZwa3kQCjhnmFF6tmRRQgQ4qLy499gjjk04Qj+B8CChLZWQA==",
"success": true
}

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\GuiNerd\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.9.3</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)xamarin.forms\3.4.0.1008975\build\Xamarin.Forms.props" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\3.4.0.1008975\build\Xamarin.Forms.props')" />
</ImportGroup>
</Project>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)xamarin.forms\3.4.0.1008975\build\Xamarin.Forms.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\3.4.0.1008975\build\Xamarin.Forms.targets')" />
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
</ImportGroup>
</Project>

View File

@ -0,0 +1,24 @@
//------------------------------------------------------------------------------
// <auto-generated>
// O código foi gerado por uma ferramenta.
// Versão de Tempo de Execução:4.0.30319.42000
//
// As alterações ao arquivo poderão causar comportamento incorreto e serão perdidas se
// o código for gerado novamente.
// </auto-generated>
//------------------------------------------------------------------------------
[assembly: global::Xamarin.Forms.Xaml.XamlResourceIdAttribute("Calculadora.App.xaml", "App.xaml", typeof(global::Calculadora.App))]
namespace Calculadora {
[global::Xamarin.Forms.Xaml.XamlFilePathAttribute("App.xaml")]
public partial class App : global::Xamarin.Forms.Application {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private void InitializeComponent() {
global::Xamarin.Forms.Xaml.Extensions.LoadFromXaml(this, typeof(App));
}
}
}

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// O código foi gerado por uma ferramenta.
// Versão de Tempo de Execução:4.0.30319.42000
//
// As alterações ao arquivo poderão causar comportamento incorreto e serão perdidas se
// o código for gerado novamente.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Calculadora")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Calculadora")]
[assembly: System.Reflection.AssemblyTitleAttribute("Calculadora")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Gerado pela classe WriteCodeFragment do MSBuild.

View File

@ -0,0 +1 @@
ae8f254406169d217ed94f9f9384361485b585c8

View File

@ -0,0 +1 @@
a828ad7a2cdb8fb6d33c0d7177df01388ad0e3af

View File

@ -0,0 +1,12 @@
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\bin\Debug\netstandard2.0\Calculadora.deps.json
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\bin\Debug\netstandard2.0\Calculadora.dll
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\bin\Debug\netstandard2.0\Calculadora.pdb
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\Calculadora.csprojAssemblyReference.cache
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\App.xaml.g.cs
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\MainPage.xaml.g.cs
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\Calculadora.csproj.CoreCompileInputs.cache
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\Calculadora.AssemblyInfoInputs.cache
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\Calculadora.AssemblyInfo.cs
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\XamlC.stamp
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\Calculadora.dll
C:\Users\GuiNerd\source\repos\Calculadora\Calculadora\Calculadora\obj\Debug\netstandard2.0\Calculadora.pdb

View File

@ -0,0 +1,40 @@
//------------------------------------------------------------------------------
// <auto-generated>
// O código foi gerado por uma ferramenta.
// Versão de Tempo de Execução:4.0.30319.42000
//
// As alterações ao arquivo poderão causar comportamento incorreto e serão perdidas se
// o código for gerado novamente.
// </auto-generated>
//------------------------------------------------------------------------------
[assembly: global::Xamarin.Forms.Xaml.XamlResourceIdAttribute("Calculadora.MainPage.xaml", "MainPage.xaml", typeof(global::Calculadora.MainPage))]
namespace Calculadora {
[global::Xamarin.Forms.Xaml.XamlFilePathAttribute("MainPage.xaml")]
public partial class MainPage : global::Xamarin.Forms.ContentPage {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private global::Xamarin.Forms.Grid controlGrid;
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private global::Xamarin.Forms.Label firstNumber;
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private global::Xamarin.Forms.Label mathOperator;
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private global::Xamarin.Forms.Label secondNumber;
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private void InitializeComponent() {
global::Xamarin.Forms.Xaml.Extensions.LoadFromXaml(this, typeof(MainPage));
controlGrid = global::Xamarin.Forms.NameScopeExtensions.FindByName<global::Xamarin.Forms.Grid>(this, "controlGrid");
firstNumber = global::Xamarin.Forms.NameScopeExtensions.FindByName<global::Xamarin.Forms.Label>(this, "firstNumber");
mathOperator = global::Xamarin.Forms.NameScopeExtensions.FindByName<global::Xamarin.Forms.Label>(this, "mathOperator");
secondNumber = global::Xamarin.Forms.NameScopeExtensions.FindByName<global::Xamarin.Forms.Label>(this, "secondNumber");
}
}
}

View File

@ -0,0 +1,405 @@
{
"version": 3,
"targets": {
".NETStandard,Version=v2.0": {
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"NETStandard.Library/2.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
},
"build": {
"build/netstandard2.0/NETStandard.Library.targets": {}
}
},
"Xamarin.Forms/3.4.0.1008975": {
"type": "package",
"compile": {
"lib/netstandard2.0/Xamarin.Forms.Core.dll": {},
"lib/netstandard2.0/Xamarin.Forms.Platform.dll": {},
"lib/netstandard2.0/Xamarin.Forms.Xaml.dll": {}
},
"runtime": {
"lib/netstandard2.0/Xamarin.Forms.Core.dll": {},
"lib/netstandard2.0/Xamarin.Forms.Platform.dll": {},
"lib/netstandard2.0/Xamarin.Forms.Xaml.dll": {}
},
"build": {
"build/Xamarin.Forms.props": {},
"build/Xamarin.Forms.targets": {}
}
}
}
},
"libraries": {
"Microsoft.NETCore.Platforms/1.1.0": {
"sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
"path": "microsoft.netcore.platforms/1.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"microsoft.netcore.platforms.1.1.0.nupkg.sha512",
"microsoft.netcore.platforms.nuspec",
"runtime.json"
]
},
"NETStandard.Library/2.0.3": {
"sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
"type": "package",
"path": "netstandard.library/2.0.3",
"files": [
".nupkg.metadata",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"build/netstandard2.0/NETStandard.Library.targets",
"build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
"build/netstandard2.0/ref/System.AppContext.dll",
"build/netstandard2.0/ref/System.Collections.Concurrent.dll",
"build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
"build/netstandard2.0/ref/System.Collections.Specialized.dll",
"build/netstandard2.0/ref/System.Collections.dll",
"build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
"build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
"build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
"build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
"build/netstandard2.0/ref/System.ComponentModel.dll",
"build/netstandard2.0/ref/System.Console.dll",
"build/netstandard2.0/ref/System.Core.dll",
"build/netstandard2.0/ref/System.Data.Common.dll",
"build/netstandard2.0/ref/System.Data.dll",
"build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
"build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
"build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
"build/netstandard2.0/ref/System.Diagnostics.Process.dll",
"build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
"build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
"build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
"build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
"build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
"build/netstandard2.0/ref/System.Drawing.Primitives.dll",
"build/netstandard2.0/ref/System.Drawing.dll",
"build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
"build/netstandard2.0/ref/System.Globalization.Calendars.dll",
"build/netstandard2.0/ref/System.Globalization.Extensions.dll",
"build/netstandard2.0/ref/System.Globalization.dll",
"build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
"build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
"build/netstandard2.0/ref/System.IO.Compression.dll",
"build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
"build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
"build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
"build/netstandard2.0/ref/System.IO.FileSystem.dll",
"build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
"build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
"build/netstandard2.0/ref/System.IO.Pipes.dll",
"build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
"build/netstandard2.0/ref/System.IO.dll",
"build/netstandard2.0/ref/System.Linq.Expressions.dll",
"build/netstandard2.0/ref/System.Linq.Parallel.dll",
"build/netstandard2.0/ref/System.Linq.Queryable.dll",
"build/netstandard2.0/ref/System.Linq.dll",
"build/netstandard2.0/ref/System.Net.Http.dll",
"build/netstandard2.0/ref/System.Net.NameResolution.dll",
"build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
"build/netstandard2.0/ref/System.Net.Ping.dll",
"build/netstandard2.0/ref/System.Net.Primitives.dll",
"build/netstandard2.0/ref/System.Net.Requests.dll",
"build/netstandard2.0/ref/System.Net.Security.dll",
"build/netstandard2.0/ref/System.Net.Sockets.dll",
"build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
"build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
"build/netstandard2.0/ref/System.Net.WebSockets.dll",
"build/netstandard2.0/ref/System.Net.dll",
"build/netstandard2.0/ref/System.Numerics.dll",
"build/netstandard2.0/ref/System.ObjectModel.dll",
"build/netstandard2.0/ref/System.Reflection.Extensions.dll",
"build/netstandard2.0/ref/System.Reflection.Primitives.dll",
"build/netstandard2.0/ref/System.Reflection.dll",
"build/netstandard2.0/ref/System.Resources.Reader.dll",
"build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
"build/netstandard2.0/ref/System.Resources.Writer.dll",
"build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
"build/netstandard2.0/ref/System.Runtime.Extensions.dll",
"build/netstandard2.0/ref/System.Runtime.Handles.dll",
"build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
"build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
"build/netstandard2.0/ref/System.Runtime.Numerics.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.dll",
"build/netstandard2.0/ref/System.Runtime.dll",
"build/netstandard2.0/ref/System.Security.Claims.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
"build/netstandard2.0/ref/System.Security.Principal.dll",
"build/netstandard2.0/ref/System.Security.SecureString.dll",
"build/netstandard2.0/ref/System.ServiceModel.Web.dll",
"build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
"build/netstandard2.0/ref/System.Text.Encoding.dll",
"build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
"build/netstandard2.0/ref/System.Threading.Overlapped.dll",
"build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
"build/netstandard2.0/ref/System.Threading.Tasks.dll",
"build/netstandard2.0/ref/System.Threading.Thread.dll",
"build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
"build/netstandard2.0/ref/System.Threading.Timer.dll",
"build/netstandard2.0/ref/System.Threading.dll",
"build/netstandard2.0/ref/System.Transactions.dll",
"build/netstandard2.0/ref/System.ValueTuple.dll",
"build/netstandard2.0/ref/System.Web.dll",
"build/netstandard2.0/ref/System.Windows.dll",
"build/netstandard2.0/ref/System.Xml.Linq.dll",
"build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
"build/netstandard2.0/ref/System.Xml.Serialization.dll",
"build/netstandard2.0/ref/System.Xml.XDocument.dll",
"build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
"build/netstandard2.0/ref/System.Xml.XPath.dll",
"build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
"build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
"build/netstandard2.0/ref/System.Xml.dll",
"build/netstandard2.0/ref/System.dll",
"build/netstandard2.0/ref/mscorlib.dll",
"build/netstandard2.0/ref/netstandard.dll",
"build/netstandard2.0/ref/netstandard.xml",
"lib/netstandard1.0/_._",
"netstandard.library.2.0.3.nupkg.sha512",
"netstandard.library.nuspec"
]
},
"Xamarin.Forms/3.4.0.1008975": {
"sha512": "tM9syeev45u92OFENGjq+Zw8WiEwLJFiXe317XpL9SY2RRk9sm2fc1lDVjzwz0da+5ZP5fi24NAPsPQdxBdMwQ==",
"type": "package",
"path": "xamarin.forms/3.4.0.1008975",
"files": [
".nupkg.metadata",
".signature.p7s",
"build/Xamarin.Forms.DefaultItems.props",
"build/Xamarin.Forms.DefaultItems.targets",
"build/Xamarin.Forms.props",
"build/Xamarin.Forms.targets",
"build/net461/Mono.Cecil.Mdb.dll",
"build/net461/Mono.Cecil.Pdb.dll",
"build/net461/Mono.Cecil.Rocks.dll",
"build/net461/Mono.Cecil.dll",
"build/net461/System.CodeDom.dll",
"build/net461/Xamarin.Forms.Build.Tasks.dll",
"build/net461/Xamarin.Forms.Core.dll",
"build/net461/Xamarin.Forms.Xaml.dll",
"build/netstandard2.0/Mono.Cecil.Mdb.dll",
"build/netstandard2.0/Mono.Cecil.Pdb.dll",
"build/netstandard2.0/Mono.Cecil.Rocks.dll",
"build/netstandard2.0/Mono.Cecil.dll",
"build/netstandard2.0/System.CodeDom.dll",
"build/netstandard2.0/Xamarin.Forms.Build.Tasks.dll",
"build/netstandard2.0/Xamarin.Forms.Core.dll",
"build/netstandard2.0/Xamarin.Forms.Xaml.dll",
"lib/MonoAndroid10/Design/Xamarin.Forms.Core.Design.dll",
"lib/MonoAndroid10/Design/Xamarin.Forms.Xaml.Design.dll",
"lib/MonoAndroid10/FormsViewGroup.dll",
"lib/MonoAndroid10/FormsViewGroup.pdb",
"lib/MonoAndroid10/Xamarin.Forms.Core.dll",
"lib/MonoAndroid10/Xamarin.Forms.Core.pdb",
"lib/MonoAndroid10/Xamarin.Forms.Core.xml",
"lib/MonoAndroid10/Xamarin.Forms.Platform.Android.dll",
"lib/MonoAndroid10/Xamarin.Forms.Platform.Android.pdb",
"lib/MonoAndroid10/Xamarin.Forms.Platform.dll",
"lib/MonoAndroid10/Xamarin.Forms.Xaml.dll",
"lib/MonoAndroid10/Xamarin.Forms.Xaml.pdb",
"lib/MonoAndroid10/Xamarin.Forms.Xaml.xml",
"lib/Xamarin.Mac/Design/Xamarin.Forms.Core.Design.dll",
"lib/Xamarin.Mac/Design/Xamarin.Forms.Xaml.Design.dll",
"lib/Xamarin.Mac/Xamarin.Forms.Core.dll",
"lib/Xamarin.Mac/Xamarin.Forms.Platform.dll",
"lib/Xamarin.Mac/Xamarin.Forms.Platform.macOS.dll",
"lib/Xamarin.Mac/Xamarin.Forms.Xaml.dll",
"lib/Xamarin.iOS10/Design/Xamarin.Forms.Core.Design.dll",
"lib/Xamarin.iOS10/Design/Xamarin.Forms.Xaml.Design.dll",
"lib/Xamarin.iOS10/Xamarin.Forms.Core.dll",
"lib/Xamarin.iOS10/Xamarin.Forms.Core.pdb",
"lib/Xamarin.iOS10/Xamarin.Forms.Core.xml",
"lib/Xamarin.iOS10/Xamarin.Forms.Platform.dll",
"lib/Xamarin.iOS10/Xamarin.Forms.Platform.iOS.dll",
"lib/Xamarin.iOS10/Xamarin.Forms.Platform.iOS.pdb",
"lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll",
"lib/Xamarin.iOS10/Xamarin.Forms.Xaml.pdb",
"lib/Xamarin.iOS10/Xamarin.Forms.Xaml.xml",
"lib/Xamarin.iOS10/ar/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/ca/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/cs/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/da/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/de/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/el/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/es/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/fi/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/fr/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/he/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/hi/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/hr/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/hu/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/id/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/it/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/ja/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/ko/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/ms/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/nb/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/nl/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/pl/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/pt-BR/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/pt/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/ro/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/ru/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/sk/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/sv/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/th/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/tr/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/uk/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/vi/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/zh-HK/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/zh-Hans/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/Xamarin.iOS10/zh-Hant/Xamarin.Forms.Platform.iOS.resources.dll",
"lib/netstandard1.0/Design/Xamarin.Forms.Core.Design.dll",
"lib/netstandard1.0/Design/Xamarin.Forms.Xaml.Design.dll",
"lib/netstandard1.0/Xamarin.Forms.Core.dll",
"lib/netstandard1.0/Xamarin.Forms.Core.pdb",
"lib/netstandard1.0/Xamarin.Forms.Core.xml",
"lib/netstandard1.0/Xamarin.Forms.Platform.dll",
"lib/netstandard1.0/Xamarin.Forms.Xaml.dll",
"lib/netstandard1.0/Xamarin.Forms.Xaml.pdb",
"lib/netstandard1.0/Xamarin.Forms.Xaml.xml",
"lib/netstandard2.0/Design/Xamarin.Forms.Core.Design.dll",
"lib/netstandard2.0/Design/Xamarin.Forms.Xaml.Design.dll",
"lib/netstandard2.0/Xamarin.Forms.Core.dll",
"lib/netstandard2.0/Xamarin.Forms.Core.pdb",
"lib/netstandard2.0/Xamarin.Forms.Core.xml",
"lib/netstandard2.0/Xamarin.Forms.Platform.dll",
"lib/netstandard2.0/Xamarin.Forms.Xaml.dll",
"lib/netstandard2.0/Xamarin.Forms.Xaml.pdb",
"lib/netstandard2.0/Xamarin.Forms.Xaml.xml",
"lib/tizen40/Design/Xamarin.Forms.Core.Design.dll",
"lib/tizen40/Design/Xamarin.Forms.Xaml.Design.dll",
"lib/tizen40/Xamarin.Forms.Core.dll",
"lib/tizen40/Xamarin.Forms.Core.pdb",
"lib/tizen40/Xamarin.Forms.Core.xml",
"lib/tizen40/Xamarin.Forms.Platform.Tizen.dll",
"lib/tizen40/Xamarin.Forms.Platform.Tizen.pdb",
"lib/tizen40/Xamarin.Forms.Platform.dll",
"lib/tizen40/Xamarin.Forms.Xaml.dll",
"lib/tizen40/Xamarin.Forms.Xaml.pdb",
"lib/tizen40/Xamarin.Forms.Xaml.xml",
"lib/uap10.0/Design/Xamarin.Forms.Core.Design.dll",
"lib/uap10.0/Design/Xamarin.Forms.Xaml.Design.dll",
"lib/uap10.0/Xamarin.Forms.Core.dll",
"lib/uap10.0/Xamarin.Forms.Core.xml",
"lib/uap10.0/Xamarin.Forms.Platform.UAP.dll",
"lib/uap10.0/Xamarin.Forms.Platform.UAP.pri",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/AutoSuggestStyle.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/FormsCommandBarStyle.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/FormsEmbeddedPageWrapper.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/FormsFlyout.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/FormsProgressBarStyle.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/FormsTextBoxStyle.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/MasterDetailControlStyle.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/PageControlStyle.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/Properties/Xamarin.Forms.Platform.UAP.rd.xml",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/Resources.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/SliderStyle.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/TabbedPageStyle.xbf",
"lib/uap10.0/Xamarin.Forms.Platform.UAP/Xamarin.Forms.Platform.UAP.xr.xml",
"lib/uap10.0/Xamarin.Forms.Platform.dll",
"lib/uap10.0/Xamarin.Forms.Xaml.dll",
"lib/uap10.0/Xamarin.Forms.Xaml.xml",
"xamarin.forms.3.4.0.1008975.nupkg.sha512",
"xamarin.forms.nuspec"
]
}
},
"projectFileDependencyGroups": {
".NETStandard,Version=v2.0": [
"NETStandard.Library >= 2.0.3",
"Xamarin.Forms >= 3.4.0.1008975"
]
},
"packageFolders": {
"C:\\Users\\GuiNerd\\.nuget\\packages\\": {},
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\GuiNerd\\source\\repos\\Calculadora\\Calculadora\\Calculadora\\Calculadora.csproj",
"projectName": "Calculadora",
"projectPath": "C:\\Users\\GuiNerd\\source\\repos\\Calculadora\\Calculadora\\Calculadora\\Calculadora.csproj",
"packagesPath": "C:\\Users\\GuiNerd\\.nuget\\packages\\",
"outputPath": "C:\\Users\\GuiNerd\\source\\repos\\Calculadora\\Calculadora\\Calculadora\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\GuiNerd\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"netstandard2.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netstandard2.0": {
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"netstandard2.0": {
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
"target": "Package",
"version": "[2.0.3, )",
"autoReferenced": true
},
"Xamarin.Forms": {
"target": "Package",
"version": "[3.4.0.1008975, )"
}
},
"imports": [
"net461"
],
"assetTargetFallback": true,
"warn": true
}
}
}
}