Skip to content

Commit c446dba

Browse files
author
Rodrigo De Moraes Cavaleiro
committed
calculadora atividade 1
0 parents  commit c446dba

File tree

543 files changed

+347623
-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.

543 files changed

+347623
-0
lines changed

CalculadoraSimples/.vs/CalculadoraSimples/config/applicationhost.config

Lines changed: 1025 additions & 0 deletions
Large diffs are not rendered by default.
71 KB
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}") = "CalculadoraSimples", "CalculadoraSimples\CalculadoraSimples.csproj", "{1362500A-8BE3-443B-82DB-6D375A6F80B3}"
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+
{1362500A-8BE3-443B-82DB-6D375A6F80B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{1362500A-8BE3-443B-82DB-6D375A6F80B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{1362500A-8BE3-443B-82DB-6D375A6F80B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{1362500A-8BE3-443B-82DB-6D375A6F80B3}.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 = {4387A950-65B3-4ED6-8756-D6379CBB6C81}
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="CalculadoraSimples.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 CalculadoraSimples
9+
{
10+
public partial class About : Page
11+
{
12+
protected void Page_Load(object sender, EventArgs e)
13+
{
14+
15+
}
16+
}
17+
}

CalculadoraSimples/CalculadoraSimples/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 CalculadoraSimples
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+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Web;
4+
using System.Web.Routing;
5+
using Microsoft.AspNet.FriendlyUrls;
6+
7+
namespace CalculadoraSimples
8+
{
9+
public static class RouteConfig
10+
{
11+
public static void RegisterRoutes(RouteCollection routes)
12+
{
13+
var settings = new FriendlyUrlSettings();
14+
settings.AutoRedirectMode = RedirectMode.Permanent;
15+
routes.EnableFriendlyUrls(settings);
16+
}
17+
}
18+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<bundles version="1.0">
3+
<styleBundle path="~/Content/css">
4+
<include path="~/Content/bootstrap.css" />
5+
<include path="~/Content/Site.css" />
6+
</styleBundle>
7+
</bundles>

0 commit comments

Comments
 (0)