Renaming everything to live under the MontoyaTech namespace.

This commit is contained in:
MattMo 2022-02-06 19:37:51 -08:00
parent fe7eb76a86
commit 4bb85aad28
16 changed files with 19 additions and 19 deletions

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32112.339
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rest.Net.Example", "Rest.Net.Example\Rest.Net.Example.csproj", "{D476199D-526A-4831-866F-790676F8BC37}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MontoyaTech.Rest.Net.Example", "MontoyaTech.Rest.Net.Example\MontoyaTech.Rest.Net.Example.csproj", "{D476199D-526A-4831-866F-790676F8BC37}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -6,8 +6,8 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D476199D-526A-4831-866F-790676F8BC37}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Rest.Net.Example</RootNamespace>
<AssemblyName>Rest.Net.Example</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net.Example</RootNamespace>
<AssemblyName>MontoyaTech.Rest.Net.Example</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
@ -33,8 +33,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Rest.Net">
<HintPath>..\..\Rest.Net\Rest.Net\bin\Debug\Rest.Net.dll</HintPath>
<Reference Include="MontoyaTech.Rest.Net">
<HintPath>..\..\MontoyaTech.Rest.Net\MontoyaTech.Rest.Net\bin\Debug\MontoyaTech.Rest.Net.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />

View File

@ -4,9 +4,9 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using Rest.Net;
using MontoyaTech.Rest.Net;
namespace Rest.Net.Example
namespace MontoyaTech.Rest.Net.Example
{
public class Program
{

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32112.339
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rest.Net", "Rest.Net\Rest.Net.csproj", "{C885E940-05C8-43BB-B80B-02F6AAF1AE09}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MontoyaTech.Rest.Net", "MontoyaTech.Rest.Net\MontoyaTech.Rest.Net.csproj", "{C885E940-05C8-43BB-B80B-02F6AAF1AE09}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -6,7 +6,7 @@ using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace Rest.Net
namespace MontoyaTech.Rest.Net
{
public static class HttpListenerRequestExtensions
{

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
using System.IO;
using Newtonsoft.Json;
namespace Rest.Net
namespace MontoyaTech.Rest.Net
{
public static class HttpListenerResponseExtensions
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rest.Net
namespace MontoyaTech.Rest.Net
{
internal static class StringExtensions
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rest.Net
namespace MontoyaTech.Rest.Net
{
/// <summary>
/// An enum containing the available http request methods.

View File

@ -7,8 +7,8 @@
<ProjectGuid>{C885E940-05C8-43BB-B80B-02F6AAF1AE09}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Rest.Net</RootNamespace>
<AssemblyName>Rest.Net</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
@ -21,7 +21,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\Rest.Net.xml</DocumentationFile>
<DocumentationFile>bin\Debug\MontoyaTech.Rest.Net.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>

View File

@ -5,7 +5,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Net;
namespace Rest.Net
namespace MontoyaTech.Rest.Net
{
public class Route
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rest.Net
namespace MontoyaTech.Rest.Net
{
public class RouteArgumentConverter
{

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
using System.Net;
using System.Threading;
namespace Rest.Net
namespace MontoyaTech.Rest.Net
{
public class RouteListener
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rest.Net
namespace MontoyaTech.Rest.Net
{
public class RouteMatcher
{