Skip to content
This repository was archived by the owner on Aug 7, 2020. It is now read-only.

Commit cc914d0

Browse files
authored
Feature/general cleanup (#15)
* Updated copyright. * Removed unneeded packages. * This probably broke something * Resharperings. * didn't wnat to commit the php stuff * didn't mean to delte this. * Updated passwords on the readme page. * Deleteing again
1 parent 855b2f8 commit cc914d0

File tree

21 files changed

+19
-69
lines changed

21 files changed

+19
-69
lines changed

AlwaysEncryptedSample.Models/CreditCard.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.ComponentModel;
32
using System.ComponentModel.DataAnnotations;
43
using System.ComponentModel.DataAnnotations.Schema;
54

AlwaysEncryptedSample.Models/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
@@ -10,7 +9,7 @@
109
[assembly: AssemblyConfiguration("")]
1110
[assembly: AssemblyCompany("")]
1211
[assembly: AssemblyProduct("AlwaysEncryptedSample.Models")]
13-
[assembly: AssemblyCopyright("Copyright © 2017")]
12+
[assembly: AssemblyCopyright("Copyright © 2019")]
1413
[assembly: AssemblyTrademark("")]
1514
[assembly: AssemblyCulture("")]
1615

AlwaysEncryptedSample.Tests/Controllers/HomeControllerTest.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Web.Mvc;
1+
using System.Web.Mvc;
62
using Microsoft.VisualStudio.TestTools.UnitTesting;
7-
using AlwaysEncryptedSample;
83
using AlwaysEncryptedSample.Controllers;
94

105
namespace AlwaysEncryptedSample.Tests.Controllers

AlwaysEncryptedSample.Tests/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
@@ -10,7 +9,7 @@
109
[assembly: AssemblyConfiguration("")]
1110
[assembly: AssemblyCompany("")]
1211
[assembly: AssemblyProduct("AlwaysEncryptedSample.Tests")]
13-
[assembly: AssemblyCopyright("Copyright © 2016")]
12+
[assembly: AssemblyCopyright("Copyright © 2017")]
1413
[assembly: AssemblyTrademark("")]
1514
[assembly: AssemblyCulture("")]
1615

AlwaysEncryptedSample/AlwaysEncryptedSample.csproj

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -77,21 +77,9 @@
7777
<Reference Include="Microsoft.Owin.Security.Cookies, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
7878
<HintPath>..\packages\Microsoft.Owin.Security.Cookies.4.0.1\lib\net45\Microsoft.Owin.Security.Cookies.dll</HintPath>
7979
</Reference>
80-
<Reference Include="Microsoft.Owin.Security.Facebook, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
81-
<HintPath>..\packages\Microsoft.Owin.Security.Facebook.4.0.1\lib\net45\Microsoft.Owin.Security.Facebook.dll</HintPath>
82-
</Reference>
83-
<Reference Include="Microsoft.Owin.Security.Google, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
84-
<HintPath>..\packages\Microsoft.Owin.Security.Google.4.0.1\lib\net45\Microsoft.Owin.Security.Google.dll</HintPath>
85-
</Reference>
86-
<Reference Include="Microsoft.Owin.Security.MicrosoftAccount, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
87-
<HintPath>..\packages\Microsoft.Owin.Security.MicrosoftAccount.4.0.1\lib\net45\Microsoft.Owin.Security.MicrosoftAccount.dll</HintPath>
88-
</Reference>
8980
<Reference Include="Microsoft.Owin.Security.OAuth, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
9081
<HintPath>..\packages\Microsoft.Owin.Security.OAuth.4.0.1\lib\net45\Microsoft.Owin.Security.OAuth.dll</HintPath>
9182
</Reference>
92-
<Reference Include="Microsoft.Owin.Security.Twitter, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
93-
<HintPath>..\packages\Microsoft.Owin.Security.Twitter.4.0.1\lib\net45\Microsoft.Owin.Security.Twitter.dll</HintPath>
94-
</Reference>
9583
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
9684
<HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
9785
</Reference>

AlwaysEncryptedSample/App_Start/BundleConfig.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Web;
2-
using System.Web.Optimization;
1+
using System.Web.Optimization;
32

43
namespace AlwaysEncryptedSample
54
{

AlwaysEncryptedSample/App_Start/FilterConfig.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Web;
2-
using System.Web.Mvc;
1+
using System.Web.Mvc;
32

43
namespace AlwaysEncryptedSample
54
{

AlwaysEncryptedSample/App_Start/IdentityConfig.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Data.Entity;
4-
using System.Linq;
52
using System.Security.Claims;
63
using System.Threading.Tasks;
7-
using System.Web;
84
using Microsoft.AspNet.Identity;
95
using Microsoft.AspNet.Identity.EntityFramework;
106
using Microsoft.AspNet.Identity.Owin;

AlwaysEncryptedSample/App_Start/RouteConfig.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Web;
5-
using System.Web.Mvc;
1+
using System.Web.Mvc;
62
using System.Web.Routing;
73

84
namespace AlwaysEncryptedSample

AlwaysEncryptedSample/App_Start/Startup.Auth.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using Microsoft.AspNet.Identity.Owin;
44
using Microsoft.Owin;
55
using Microsoft.Owin.Security.Cookies;
6-
using Microsoft.Owin.Security.Google;
76
using Owin;
87
using AlwaysEncryptedSample.Models;
98
using AlwaysEncryptedSample.Services;

0 commit comments

Comments
 (0)