Skip to content
This repository has been archived by the owner on Sep 20, 2021. It is now read-only.

Commit

Permalink
🤖 Namespace change 😊 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
PureKrome committed Oct 24, 2018
1 parent 61d272b commit 3048cc7
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 38 deletions.
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 15
VisualStudioVersion = 15.0.26124.0
MinimumVisualStudioVersion = 15.0.26124.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Homely.AspNetCore.WebApi.CoreApp", "src\Homely.AspNetCore.WebApi.CoreApp\Homely.AspNetCore.WebApi.CoreApp.csproj", "{CF46F002-F76B-495C-A875-92CC5A72AEE5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Homely.AspNetCore.WebApi.CoreApp", "src\Homely.AspNetCore.Hosting.CoreApp\Homely.AspNetCore.Hosting.CoreApp.csproj", "{CF46F002-F76B-495C-A875-92CC5A72AEE5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ before_build:

build_script:
- dotnet build -c %CONFIGURATION% -v minimal /p:Version=%APPVEYOR_BUILD_VERSION% /p:DebugType=full --no-restore
- dotnet pack src\Homely.AspNetCore.WebApi.CoreApp\Homely.AspNetCore.WebApi.CoreApp.csproj -c %CONFIGURATION% /p:Version=%APPVEYOR_BUILD_VERSION% --no-build
- dotnet pack src\Homely.AspNetCore.Hosting.CoreApp\Homely.AspNetCore.Hosting.CoreApp.csproj -c %CONFIGURATION% /p:Version=%APPVEYOR_BUILD_VERSION% --no-build

test: no

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>latest</LangVersion>
<PackageId>Homely.AspNetCore.Hosting.CoreApp</PackageId>
<Version>0.0.0</Version>
<Authors>Homely's developers</Authors>
<Company>Homely</Company>
<Product>Homely - ASP.NET Core Hosting core application-library.</Product>
<Description>An opinionated ASP.NET Core 'Hosting' core application-library is to help reduce the ceremony required in starting a new 'REST' like web application, mainly "Program.cs".</Description>
<Copyright>2018</Copyright>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
<PackageProjectUrl>https://github.com/Homely/Homely.AspNetCore.Hosting.CoreApp</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Homely/Homely.AspNetCore.Hosting.CoreApp/blob/master/LICENSE.txt</PackageLicenseUrl>
<RepositoryUrl>https://github.com/Homely/Homely.AspNetCore.Hosting.CoreApp</RepositoryUrl>
<RepositoryType>.net c# .net-core</RepositoryType>
<PackageTags>homely aspnetcore aspnet-core aspnet-core-2 c# hosting</PackageTags>
<PackageIconUrl>https://i.imgur.com/PnxWhuz.jpg</PackageIconUrl>
<IsPackable>true</IsPackable>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Serilog.AspNetCore" Version="2.1.1" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.0.1" />
</ItemGroup>

<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.IO;
using System.Threading.Tasks;

namespace Homely.AspNetCore.WebApi.CoreApp
namespace Homely.AspNetCore.Hosting.CoreApp
{
public static class Program
{
Expand Down

This file was deleted.

0 comments on commit 3048cc7

Please sign in to comment.