Skip to content

Commit b50eac2

Browse files
author
Rodrigo De Moraes Cavaleiro
committed
Conversor de Euros em reais
1 parent f51daa2 commit b50eac2

File tree

496 files changed

+345285
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

496 files changed

+345285
-0
lines changed
Binary file not shown.
-512 Bytes
Binary file not shown.

Conversor de Euros em reais/.vs/Conversor de Euros em reais/config/applicationhost.config

Lines changed: 1025 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.7.34202.233
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Conversor de Euros em reais", "Conversor de Euros em reais\Conversor de Euros em reais.csproj", "{7E911C17-B5EA-4C82-A34B-C7836C51C2D5}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{7E911C17-B5EA-4C82-A34B-C7836C51C2D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{7E911C17-B5EA-4C82-A34B-C7836C51C2D5}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{7E911C17-B5EA-4C82-A34B-C7836C51C2D5}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{7E911C17-B5EA-4C82-A34B-C7836C51C2D5}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {A02A29B7-26E8-4321-902E-E8DF41B06D17}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="Conversor_de_Euros_em_reais.About" %>
2+
3+
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
4+
<main aria-labelledby="title">
5+
<h2 id="title"><%: Title %>.</h2>
6+
<h3>Your application description page.</h3>
7+
<p>Use this area to provide additional information.</p>
8+
</main>
9+
</asp:Content>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.UI;
6+
using System.Web.UI.WebControls;
7+
8+
namespace Conversor_de_Euros_em_reais
9+
{
10+
public partial class About : Page
11+
{
12+
protected void Page_Load(object sender, EventArgs e)
13+
{
14+
15+
}
16+
}
17+
}

Conversor de Euros em reais/Conversor de Euros em reais/About.aspx.designer.cs

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.Optimization;
6+
using System.Web.UI;
7+
8+
namespace Conversor_de_Euros_em_reais
9+
{
10+
public class BundleConfig
11+
{
12+
// Para obter mais informações sobre o Agrupamento, visite https://go.microsoft.com/fwlink/?LinkID=303951
13+
public static void RegisterBundles(BundleCollection bundles)
14+
{
15+
bundles.Add(new ScriptBundle("~/bundles/WebFormsJs").Include(
16+
"~/Scripts/WebForms/WebForms.js",
17+
"~/Scripts/WebForms/WebUIValidation.js",
18+
"~/Scripts/WebForms/MenuStandards.js",
19+
"~/Scripts/WebForms/Focus.js",
20+
"~/Scripts/WebForms/GridView.js",
21+
"~/Scripts/WebForms/DetailsView.js",
22+
"~/Scripts/WebForms/TreeView.js",
23+
"~/Scripts/WebForms/WebParts.js"));
24+
25+
// A ordem é muito importante para que esses arquivos funcionem; eles possuem dependências explícitas
26+
bundles.Add(new ScriptBundle("~/bundles/MsAjaxJs").Include(
27+
"~/Scripts/WebForms/MsAjax/MicrosoftAjax.js",
28+
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxApplicationServices.js",
29+
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js",
30+
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js"));
31+
32+
// Use a versão de Desenvolvimento do Modernizr para se desenvolver e aprender com ele. Em seguida, quando estiver
33+
// pronto para a produção, utilize a ferramenta de build em https://modernizr.com para escolher somente os testes que precisa
34+
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
35+
"~/Scripts/modernizr-*"));
36+
}
37+
}
38+
}

0 commit comments

Comments
 (0)