Skip to content

Commit

Permalink
1.0.0 release changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nemi-chand-jat committed Aug 20, 2017
1 parent 0b69dc8 commit 5207833
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CookieManager_Solution.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{A11570E5-206
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{FC67A254-12A0-47CC-AA8E-26BA0E4C41CF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{2E564887-0052-4B18-9356-79B958ADDDFE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CookieManager.Test", "test\CookieManager.Test\CookieManager.Test.csproj", "{36C88EF0-0210-44EA-A6A5-7ACE7C371224}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -25,12 +29,17 @@ Global
{E2E42AB4-99E7-4899-9B8A-C98E8A158640}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E2E42AB4-99E7-4899-9B8A-C98E8A158640}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E2E42AB4-99E7-4899-9B8A-C98E8A158640}.Release|Any CPU.Build.0 = Release|Any CPU
{36C88EF0-0210-44EA-A6A5-7ACE7C371224}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{36C88EF0-0210-44EA-A6A5-7ACE7C371224}.Debug|Any CPU.Build.0 = Debug|Any CPU
{36C88EF0-0210-44EA-A6A5-7ACE7C371224}.Release|Any CPU.ActiveCfg = Release|Any CPU
{36C88EF0-0210-44EA-A6A5-7ACE7C371224}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{3FFA196A-F0FA-4E58-B62D-35191A4CB3BB} = {A11570E5-2062-4BEA-A73D-EB835CDD8DA7}
{E2E42AB4-99E7-4899-9B8A-C98E8A158640} = {FC67A254-12A0-47CC-AA8E-26BA0E4C41CF}
{36C88EF0-0210-44EA-A6A5-7ACE7C371224} = {2E564887-0052-4B18-9356-79B958ADDDFE}
EndGlobalSection
EndGlobal
6 changes: 4 additions & 2 deletions src/CookieManager/CookieManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
<TargetFramework>netcoreapp1.0</TargetFramework>
<RepositoryUrl>https://github.com/nemi-chand/CookieManager</RepositoryUrl>
<PackageProjectUrl>https://github.com/nemi-chand/CookieManager</PackageProjectUrl>
<Description>ASP.Net Core Abstraction layer on top of Cookie</Description>
<Description>ASP.Net Core Abstraction layer on top of Http Cookie</Description>
<Authors>Nemi Chand</Authors>
<Version>1.0.0-alpha</Version>
<Version>1.0.0</Version>
<NeutralLanguage>en</NeutralLanguage>
<PackageTags>CookieManager,asp.net core cookie,cookie,http cookie</PackageTags>
<PackageReleaseNotes>Performance improvements and refectoring</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down
15 changes: 15 additions & 0 deletions test/CookieManager.Test/CookieManager.Test.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http" Version="1.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="Moq" Version="4.7.99" />
<PackageReference Include="xunit" Version="2.2.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
</ItemGroup>

</Project>
13 changes: 13 additions & 0 deletions test/CookieManager.Test/ICookieTest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System;
using Xunit;

namespace CookieManager.Test
{
public class UnitTest1
{
[Fact]
public void Test1()
{
}
}
}

0 comments on commit 5207833

Please sign in to comment.