Skip to content

Commit

Permalink
Renaming folders
Browse files Browse the repository at this point in the history
  • Loading branch information
Atul Behera committed Apr 21, 2020
1 parent d7ffa7e commit dc65324
Show file tree
Hide file tree
Showing 60 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion Delete Workspace/Delete Workspace.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Express 14 for Web
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Delete Workspace", "MAQPOCs\Delete Workspace.csproj", "{A0CF8D56-8D4F-4406-8E29-A8EBFCD6A5EC}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Delete Workspace", "Delete Workspace\Delete Workspace.csproj", "{A0CF8D56-8D4F-4406-8E29-A8EBFCD6A5EC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Web;
using System.Web.Optimization;

namespace MAQPOCs
namespace DeleteWorkspace
{
public class BundleConfig
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Web;
using System.Web.Mvc;

namespace MAQPOCs
namespace DeleteWorkspace
{
public class FilterConfig
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
using Microsoft.AspNet.Identity.Owin;
using Microsoft.Owin;
using Microsoft.Owin.Security;
using MAQPOCs.Models;
using DeleteWorkspace.Models;

namespace MAQPOCs
namespace DeleteWorkspace
{
public class EmailService : IIdentityMessageService
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Web.Mvc;
using System.Web.Routing;

namespace MAQPOCs
namespace DeleteWorkspace
{
public class RouteConfig
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
using Microsoft.Owin.Security.Cookies;
using Microsoft.Owin.Security.Google;
using Owin;
using MAQPOCs.Models;
using DeleteWorkspace.Models;

namespace MAQPOCs
namespace DeleteWorkspace
{
public partial class Startup
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MAQPOCs.Auth
namespace DeleteWorkspace.Auth
{
using System;
using System.Configuration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MAQPOCs.Auth
namespace DeleteWorkspace.Auth
{
//using Microsoft.Identity.Client;
using Microsoft.IdentityModel.Clients.ActiveDirectory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.Owin.Security;
using MAQPOCs.Models;
using DeleteWorkspace.Models;

namespace MAQPOCs.Controllers
namespace DeleteWorkspace.Controllers
{
[Authorize]
public class AccountController : Controller
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Web;
using System.Web.Mvc;

namespace MAQPOCs.Controllers
namespace DeleteWorkspace.Controllers
{
public class HomeController : Controller
{/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.Owin.Security;
using MAQPOCs.Models;
using DeleteWorkspace.Models;

namespace MAQPOCs.Controllers
namespace DeleteWorkspace.Controllers
{
[Authorize]
public class ManageController : Controller
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MAQPOCs</RootNamespace>
<AssemblyName>MAQPOCs</AssemblyName>
<RootNamespace>DeleteWorkspace</RootNamespace>
<AssemblyName>Delete Workspace</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<MvcBuildViews>false</MvcBuildViews>
<UseIISExpress>true</UseIISExpress>
Expand Down
1 change: 1 addition & 0 deletions Delete Workspace/Delete Workspace/Global.asax
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="DeleteWorkspace.MvcApplication" Language="C#" %>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Web.Optimization;
using System.Web.Routing;

namespace MAQPOCs
namespace DeleteWorkspace
{
public class MvcApplication : System.Web.HttpApplication
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

namespace MAQPOCs.Models
namespace DeleteWorkspace.Models
{
public class ExternalLoginConfirmationViewModel
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;

namespace MAQPOCs.Models
namespace DeleteWorkspace.Models
{
// You can add profile data for the user by adding more properties to your ApplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
public class ApplicationUser : IdentityUser
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Microsoft.AspNet.Identity;
using Microsoft.Owin.Security;

namespace MAQPOCs.Models
namespace DeleteWorkspace.Models
{
public class IndexViewModel
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("MAQPOCs")]
[assembly: AssemblyTitle("DeleteWorkspace")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("MAQPOCs")]
[assembly: AssemblyProduct("DeleteWorkspace")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.Owin;
using Owin;

[assembly: OwinStartup(typeof(MAQPOCs.Startup))]
namespace MAQPOCs
[assembly: OwinStartup(typeof(DeleteWorkspace.Startup))]
namespace DeleteWorkspace
{
public partial class Startup
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace MAQPOCs
namespace DeleteWorkspace
{
using MAQPOCs.Auth;
using DeleteWorkspace.Auth;
using Microsoft.IdentityModel.Tokens;
using Microsoft.Owin.Extensions;
using Microsoft.Owin.Security;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.ExternalLoginConfirmationViewModel
@model DeleteWorkspace.Models.ExternalLoginConfirmationViewModel
@{
ViewBag.Title = "Register";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.ForgotPasswordViewModel
@model DeleteWorkspace.Models.ForgotPasswordViewModel
@{
ViewBag.Title = "Forgot your password?";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@using MAQPOCs.Models
@using DeleteWorkspace.Models
@model LoginViewModel
@{
ViewBag.Title = "Log in";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.RegisterViewModel
@model DeleteWorkspace.Models.RegisterViewModel
@{
ViewBag.Title = "Register";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.ResetPasswordViewModel
@model DeleteWorkspace.Models.ResetPasswordViewModel
@{
ViewBag.Title = "Reset password";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.SendCodeViewModel
@model DeleteWorkspace.Models.SendCodeViewModel
@{
ViewBag.Title = "Send";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.VerifyCodeViewModel
@model DeleteWorkspace.Models.VerifyCodeViewModel
@{
ViewBag.Title = "Verify";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.ExternalLoginListViewModel
@model DeleteWorkspace.Models.ExternalLoginListViewModel
@using Microsoft.Owin.Security

<h4>Use another service to log in.</h4>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.AddPhoneNumberViewModel
@model DeleteWorkspace.Models.AddPhoneNumberViewModel
@{
ViewBag.Title = "Phone Number";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.ChangePasswordViewModel
@model DeleteWorkspace.Models.ChangePasswordViewModel
@{
ViewBag.Title = "Change Password";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.IndexViewModel
@model DeleteWorkspace.Models.IndexViewModel
@{
ViewBag.Title = "Manage";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.ManageLoginsViewModel
@model DeleteWorkspace.Models.ManageLoginsViewModel
@using Microsoft.Owin.Security
@{
ViewBag.Title = "Manage your external logins";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.SetPasswordViewModel
@model DeleteWorkspace.Models.SetPasswordViewModel
@{
ViewBag.Title = "Create Password";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model MAQPOCs.Models.VerifyPhoneNumberViewModel
@model DeleteWorkspace.Models.VerifyPhoneNumberViewModel
@{
ViewBag.Title = "Verify Phone Number";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Optimization"/>
<add namespace="System.Web.Routing" />
<add namespace="MAQPOCs" />
<add namespace="DeleteWorkspace" />
</namespaces>
</pages>
</system.web.webPages.razor>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</trace>
</system.diagnostics>
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-MAQPOCs-20200312033719.mdf;Initial Catalog=aspnet-MAQPOCs-20200312033719;Integrated Security=True" providerName="System.Data.SqlClient" />
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-DeleteWorkspace-20200312033719.mdf;Initial Catalog=aspnet-DeleteWorkspace-20200312033719;Integrated Security=True" providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
Expand Down
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion Delete Workspace/MAQPOCs/Global.asax

This file was deleted.

0 comments on commit dc65324

Please sign in to comment.