Skip to content

Commit 955da54

Browse files
committed
TRYING TO CONNECT WITH THE API
1 parent df8373f commit 955da54

Some content is hidden

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

43 files changed

+22477
-77
lines changed

.vs/CoffeeForCode/v16/.suo

-51.5 KB
Binary file not shown.

AppBancoDLL/AppBancoDLL.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
<Reference Include="System" />
3636
<Reference Include="System.ComponentModel.DataAnnotations" />
3737
<Reference Include="System.Core" />
38+
<Reference Include="System.Net.Http.WebRequest" />
3839
<Reference Include="System.Xml.Linq" />
3940
<Reference Include="System.Data.DataSetExtensions" />
4041
<Reference Include="Microsoft.CSharp" />

AppBancoDLL/bin/Debug/AppBancoDLL.dll

0 Bytes
Binary file not shown.

AppBancoDLL/bin/Debug/AppBancoDLL.pdb

0 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
660 KB
Binary file not shown.

AppBancoDLL/bin/Debug/Newtonsoft.Json.xml

Lines changed: 11172 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
184cabcd40e3fdae2c895131b33770c2493c3f12
1+
d5ec376a7b76c617539d9dd062cd59b36825faf0

AppBancoDLL/obj/Debug/AppBancoDLL.csproj.FileListAbsolute.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\Coffee
2222
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDLL\obj\Debug\AppBancoDLL.csproj.CopyComplete
2323
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDLL\obj\Debug\AppBancoDLL.dll
2424
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDLL\obj\Debug\AppBancoDLL.pdb
25+
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDLL\bin\Debug\Newtonsoft.Json.dll
26+
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDLL\bin\Debug\Newtonsoft.Json.xml
Binary file not shown.

AppBancoDLL/obj/Debug/AppBancoDLL.dll

0 Bytes
Binary file not shown.

AppBancoDLL/obj/Debug/AppBancoDLL.pdb

0 Bytes
Binary file not shown.
Binary file not shown.

AppBancoDominio/AppBancoDominio.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
<WarningLevel>4</WarningLevel>
3232
</PropertyGroup>
3333
<ItemGroup>
34+
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
35+
<HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
36+
</Reference>
3437
<Reference Include="System" />
3538
<Reference Include="System.ComponentModel.DataAnnotations" />
3639
<Reference Include="System.Core" />
@@ -53,6 +56,8 @@
5356
<Compile Include="Properties\AssemblyInfo.cs" />
5457
<Compile Include="Cliente\TrabalheConosco.cs" />
5558
</ItemGroup>
56-
<ItemGroup />
59+
<ItemGroup>
60+
<None Include="packages.config" />
61+
</ItemGroup>
5762
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5863
</Project>

AppBancoDominio/Funcionario/Categoria.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
using Newtonsoft.Json;
2+
using System;
23
using System.Collections.Generic;
34
using System.Linq;
45
using System.Text;
@@ -8,8 +9,13 @@ namespace AppBancoDominio
89
{
910
public class Categoria
1011
{
12+
[JsonProperty("cd_cat")]
1113
public int cd_cat { get; set; }
14+
15+
[JsonProperty("nm_cat")]
1216
public string nm_cat { get; set; }
1317

18+
[JsonProperty("img_cat")]
19+
public string img_cat { get; set; }
1420
}
1521
}
512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
660 KB
Binary file not shown.

AppBancoDominio/bin/Debug/Newtonsoft.Json.xml

Lines changed: 11172 additions & 0 deletions
Large diffs are not rendered by default.

AppBancoDominio/obj/Debug/AppBancoDominio.csproj.CopyComplete

Whitespace-only changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ef7dc7cd4b098ad960eab5a9b4fda327907b7d82
1+
a52a03e61b8808ad620d0b11e0ebd955beebf063

AppBancoDominio/obj/Debug/AppBancoDominio.csproj.FileListAbsolute.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\Coffee
44
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDominio\obj\Debug\AppBancoDominio.csproj.CoreCompileInputs.cache
55
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDominio\obj\Debug\AppBancoDominio.dll
66
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDominio\obj\Debug\AppBancoDominio.pdb
7+
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDominio\bin\Debug\Newtonsoft.Json.dll
8+
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDominio\bin\Debug\Newtonsoft.Json.xml
9+
C:\Users\Matheus Souza\OneDrive\Documentos\ASP NET\Projetos\CoffeeForCode\CoffeeForCode\AppBancoDominio\obj\Debug\AppBancoDominio.csproj.CopyComplete
Binary file not shown.
512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

AppBancoDominio/packages.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net472" />
4+
</packages>

CoffeeForCode/CoffeeForCode.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,7 @@
326326
<Content Include="Views\Funcionario\Categoria.cshtml" />
327327
<Content Include="Views\Funcionario\BuscaCliente.cshtml" />
328328
<Content Include="Views\Funcionario\CategoriaProd.cshtml" />
329+
<Content Include="Views\Funcionario\CategoriaCadastradas.cshtml" />
329330
</ItemGroup>
330331
<ItemGroup>
331332
<Folder Include="App_Data\" />

CoffeeForCode/Controllers/FuncionarioController.cs

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
using AppBancoDLL;
33
using AppBancoDominio;
44
using MySql.Data.MySqlClient;
5+
using Newtonsoft.Json;
6+
using Newtonsoft.Json.Linq;
7+
using System;
8+
using System.Collections.Generic;
9+
using System.Net.Http;
10+
using System.Net.Http.Headers;
511
using System.Web.Mvc;
612

713
namespace CoffeeForCode.Controllers
@@ -12,6 +18,8 @@ public class FuncionarioController : Controller
1218
Conta conta = new Conta();
1319
CriaContaDAO criaConta = new CriaContaDAO();
1420

21+
string baseUrl = "https://coffeeforcode.herokuapp.com/";
22+
1523
// GET: Funcionario
1624
public ActionResult Home()
1725
{
@@ -171,16 +179,6 @@ public ActionResult CategoriaProd()
171179
{
172180
return View();
173181
}
174-
[HttpPost]
175-
public ActionResult CategoriaProd(Categoria categoria)
176-
{
177-
if (ModelState.IsValid)
178-
{
179-
var metodoCategoria = new CategoriaDAO();
180-
return RedirectToAction("CadastrarProd");
181-
}
182-
return View(categoria);
183-
}
184182
public ActionResult CadastrarProd()
185183
{
186184
return View();
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
@model IEnumerable<AppBancoDominio.Categoria>
2+
3+
@{
4+
ViewBag.Title = "CategoriaCadastradas";
5+
Layout = "~/Views/Shared/_CFCfunc.cshtml";
6+
}
7+
8+
<h2>CategoriaCadastradas</h2>
9+
10+
<p>
11+
@Html.ActionLink("Create New", "Create")
12+
</p>
13+
<table class="table">
14+
<tr>
15+
<th>
16+
@Html.DisplayNameFor(model => model.cd_cat)
17+
</th>
18+
<th>
19+
@Html.DisplayNameFor(model => model.nm_cat)
20+
</th>
21+
<th>
22+
@Html.DisplayNameFor(model => model.img_cat)
23+
</th>
24+
<th></th>
25+
</tr>
26+
27+
@foreach (var item in Model) {
28+
<tr>
29+
<td>
30+
@Html.DisplayFor(modelItem => item.cd_cat)
31+
</td>
32+
<td>
33+
@Html.DisplayFor(modelItem => item.nm_cat)
34+
</td>
35+
<td>
36+
@Html.DisplayFor(modelItem => item.img_cat)
37+
</td>
38+
<td>
39+
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
40+
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
41+
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
42+
</td>
43+
</tr>
44+
}
45+
46+
</table>

CoffeeForCode/Web.config

Lines changed: 26 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -5,67 +5,62 @@
55
-->
66
<configuration>
77
<appSettings>
8-
<add key="webpages:Version" value="3.0.0.0"/>
9-
<add key="webpages:Enabled" value="false"/>
10-
<add key="ClientValidationEnabled" value="true"/>
11-
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
8+
<add key="webpages:Version" value="3.0.0.0" />
9+
<add key="webpages:Enabled" value="false" />
10+
<add key="ClientValidationEnabled" value="true" />
11+
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
1212
</appSettings>
1313
<connectionStrings>
1414
<add name="conexao" connectionString="server = localhost; user id = root; password=Matheus2003; database = db_CFC;" />
1515
</connectionStrings>
1616
<system.web>
17-
<compilation debug="true" targetFramework="4.7.2"/>
18-
<httpRuntime targetFramework="4.7.2"/>
17+
<compilation debug="true" targetFramework="4.7.2" />
18+
<httpRuntime targetFramework="4.7.2" />
1919
</system.web>
2020
<system.webServer>
2121
<handlers>
22-
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
23-
<remove name="OPTIONSVerbHandler"/>
24-
<remove name="TRACEVerbHandler"/>
25-
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler"
26-
preCondition="integratedMode,runtimeVersionv4.0"/>
22+
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
23+
<remove name="OPTIONSVerbHandler" />
24+
<remove name="TRACEVerbHandler" />
25+
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
2726
</handlers>
2827
</system.webServer>
2928
<runtime>
3029
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
3130
<dependentAssembly>
32-
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f"/>
33-
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2"/>
31+
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" />
32+
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
3433
</dependentAssembly>
3534
<dependentAssembly>
36-
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35"/>
37-
<bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0"/>
35+
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
36+
<bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
3837
</dependentAssembly>
3938
<dependentAssembly>
40-
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/>
41-
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930"/>
39+
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
40+
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
4241
</dependentAssembly>
4342
<dependentAssembly>
44-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"/>
45-
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
43+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
44+
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
4645
</dependentAssembly>
4746
<dependentAssembly>
48-
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
49-
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
47+
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
48+
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
5049
</dependentAssembly>
5150
<dependentAssembly>
52-
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
53-
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0"/>
51+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
52+
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
5453
</dependentAssembly>
5554
<dependentAssembly>
56-
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
57-
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
55+
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
56+
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
5857
</dependentAssembly>
5958
</assemblyBinding>
6059
</runtime>
6160
<system.codedom>
6261
<compilers>
63-
<compiler language="c#;cs;csharp" extension=".cs"
64-
type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
65-
warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701"/>
66-
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb"
67-
type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
68-
warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"/>
62+
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701" />
63+
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
6964
</compilers>
7065
</system.codedom>
7166
</configuration>

CoffeeForCode/bin/AppBancoDLL.dll

0 Bytes
Binary file not shown.

CoffeeForCode/bin/AppBancoDLL.pdb

0 Bytes
Binary file not shown.

CoffeeForCode/bin/AppBancoDominio.dll

512 Bytes
Binary file not shown.

CoffeeForCode/bin/AppBancoDominio.pdb

0 Bytes
Binary file not shown.

CoffeeForCode/bin/CoffeeForCode.dll

0 Bytes
Binary file not shown.

CoffeeForCode/bin/CoffeeForCode.dll.config

Lines changed: 27 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -5,67 +5,62 @@
55
-->
66
<configuration>
77
<appSettings>
8-
<add key="webpages:Version" value="3.0.0.0"/>
9-
<add key="webpages:Enabled" value="false"/>
10-
<add key="ClientValidationEnabled" value="true"/>
11-
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
8+
<add key="webpages:Version" value="3.0.0.0" />
9+
<add key="webpages:Enabled" value="false" />
10+
<add key="ClientValidationEnabled" value="true" />
11+
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
1212
</appSettings>
1313
<connectionStrings>
14-
<add name="conexao" connectionString="server = localhost; user id = root; password=Matheus2003; database = db_CFC;" />
14+
<add name="conexao" connectionString="server = http://us-cdbr-east-03.cleardb.com; user id = b0823776c8e70b; password=fce8234f; database = heroku_88863b9257990d2;" />
1515
</connectionStrings>
1616
<system.web>
17-
<compilation debug="true" targetFramework="4.7.2"/>
18-
<httpRuntime targetFramework="4.7.2"/>
17+
<compilation debug="true" targetFramework="4.7.2" />
18+
<httpRuntime targetFramework="4.7.2" />
1919
</system.web>
2020
<system.webServer>
2121
<handlers>
22-
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
23-
<remove name="OPTIONSVerbHandler"/>
24-
<remove name="TRACEVerbHandler"/>
25-
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler"
26-
preCondition="integratedMode,runtimeVersionv4.0"/>
22+
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
23+
<remove name="OPTIONSVerbHandler" />
24+
<remove name="TRACEVerbHandler" />
25+
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
2726
</handlers>
2827
</system.webServer>
2928
<runtime>
3029
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
3130
<dependentAssembly>
32-
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f"/>
33-
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2"/>
31+
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" />
32+
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
3433
</dependentAssembly>
3534
<dependentAssembly>
36-
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35"/>
37-
<bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0"/>
35+
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
36+
<bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
3837
</dependentAssembly>
3938
<dependentAssembly>
40-
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/>
41-
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930"/>
39+
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
40+
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
4241
</dependentAssembly>
4342
<dependentAssembly>
44-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"/>
45-
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
43+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
44+
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
4645
</dependentAssembly>
4746
<dependentAssembly>
48-
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
49-
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
47+
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
48+
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
5049
</dependentAssembly>
5150
<dependentAssembly>
52-
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
53-
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0"/>
51+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
52+
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
5453
</dependentAssembly>
5554
<dependentAssembly>
56-
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
57-
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
55+
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
56+
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
5857
</dependentAssembly>
5958
</assemblyBinding>
6059
</runtime>
6160
<system.codedom>
6261
<compilers>
63-
<compiler language="c#;cs;csharp" extension=".cs"
64-
type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
65-
warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701"/>
66-
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb"
67-
type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
68-
warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"/>
62+
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701" />
63+
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
6964
</compilers>
7065
</system.codedom>
7166
</configuration>

CoffeeForCode/bin/CoffeeForCode.pdb

0 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)