Skip to content
This repository was archived by the owner on Jan 26, 2021. It is now read-only.

Commit 5ae5e51

Browse files
authored
Merge pull request #2 from Reshiru/feature/prepare-release
Renamed project and folder Blazor.IndexedDB.Framework.Core to Blazor.…
2 parents 60356a2 + 1e2c4c4 commit 5ae5e51

18 files changed

+69
-30
lines changed

src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Core/Blazor.IndexedDB.Framework.Core.csproj

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Blazor.IndexedDB.Framework.Example.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<ProjectReference Include="..\Blazor.IndexedDB.Framework.Core\Blazor.IndexedDB.Framework.Core.csproj" />
17+
<ProjectReference Include="..\Blazor.IndexedDB.Framework\Blazor.IndexedDB.Framework.csproj" />
1818
</ItemGroup>
1919

2020
</Project>

src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Models/ExampleDb.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Blazor.IndexedDB.Framework.Core;
1+
using Blazor.IndexedDB.Framework;
22
using Microsoft.JSInterop;
33

44
namespace Blazor.IndexedDB.Framework.Example.Models

src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Blazor.IndexedDB.Framework.Core;
1+
using Blazor.IndexedDB.Framework;
22
using Microsoft.AspNetCore.Components.Builder;
33
using Microsoft.Extensions.DependencyInjection;
44

src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/_Imports.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
@using Blazor.IndexedDB.Framework.Example
77
@using Blazor.IndexedDB.Framework.Example.Shared
88
@using Blazor.IndexedDB.Framework.Example.Models
9-
@using Blazor.IndexedDB.Framework.Core
10-
@using Blazor.IndexedDB.Framework.Core.Extensions
9+
@using Blazor.IndexedDB.Framework
10+
@using Blazor.IndexedDB.Framework.Extensions
1111
@using System.Diagnostics

src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.29021.104
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blazor.IndexedDB.Framework.Core", "Blazor.IndexedDB.Framework.Core\Blazor.IndexedDB.Framework.Core.csproj", "{02BBAD0B-C957-4342-BC30-D3E9BC449229}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blazor.IndexedDB.Framework", "Blazor.IndexedDB.Framework\Blazor.IndexedDB.Framework.csproj", "{02BBAD0B-C957-4342-BC30-D3E9BC449229}"
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blazor.IndexedDB.Framework.Example", "Blazor.IndexedDB.Framework.Example\Blazor.IndexedDB.Framework.Example.csproj", "{9B6AD5AA-3A6D-43E7-A28A-E577BE3545B4}"
99
EndProject
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Blazor.IndexedDB.Framework.Core.Attributes
3+
namespace Blazor.IndexedDB.Framework.Attributes
44
{
55
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
66
public sealed class AutoIncrementAttribute : Attribute { }

src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Core/Attributes/UniqueAttribute.cs renamed to src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Attributes/UniqueAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Blazor.IndexedDB.Framework.Core.Attributes
3+
namespace Blazor.IndexedDB.Framework.Attributes
44
{
55
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
66
public sealed class UniqueAttribute : Attribute { }
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<OutputType>Library</OutputType>
6+
<IsPackable>true</IsPackable>
7+
<RazorLangVersion>3.0</RazorLangVersion>
8+
<LangVersion>7.3</LangVersion>
9+
<AssemblyName>Blazor.IndexedDB.Framework</AssemblyName>
10+
<Version>1.0.0-beta</Version>
11+
<Authors>Joel Kessler</Authors>
12+
<Description>A Blazor framework for interacting with IndexedDB</Description>
13+
<RepositoryUrl>https://github.com/Reshiru/Blazor.IndexedDB.Framework/</RepositoryUrl>
14+
<RepositoryType>git</RepositoryType>
15+
<PackageTags>Blazor IndexedDB</PackageTags>
16+
<Copyright>(c) Joel Kessler</Copyright>
17+
<licenseUrl>https://github.com/Reshiru/Blazor.IndexedDB.Framework/blob/master/LICENSE</licenseUrl>
18+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
19+
</PropertyGroup>
20+
21+
<ItemGroup>
22+
<PackageReference Include="Microsoft.AspNetCore.Components.Browser" Version="3.0.0-preview6.19307.2" />
23+
<PackageReference Include="TG.Blazor.IndexedDB" Version="0.9.0-beta" />
24+
</ItemGroup>
25+
26+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>Blazor.IndexedDB.Framework</id>
5+
<version>1.0.0-beta</version>
6+
<authors>Joel Kessler</authors>
7+
<owners>Joel Kessler</owners>
8+
<license type="expression">MIT</license>
9+
<repository type="Git" url="https://github.com/Reshiru/Blazor.IndexedDB.Framework/" />
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>A Blazor framework for interacting with IndexedDB</description>
12+
<releaseNotes>Release 1.0.0-beta</releaseNotes>
13+
<copyright>Copyright 2019 Joel Kessler</copyright>
14+
<tags>Microsoft ASP.NET Core Blazor IndexedDB</tags>
15+
<dependencies>
16+
<group targetFramework=".NetStandard2.0">
17+
<dependency id="Microsoft.AspNetCore.Components.Browser" version="3.0.0-preview6.19307.2" exclude="Build,Analyzers" />
18+
<dependency id="TG.Blazor.IndexedDB" version="0.9.0-beta" exclude="Build,Analyzers" />
19+
</group>
20+
</dependencies>
21+
</metadata>
22+
<files>
23+
<file src="bin\Release\netstandard2.0\Blazor.IndexedDB.Framework" target="lib\netstandard2.0\Blazor.IndexedDB.Framework.dll" />
24+
</files>
25+
</package>

0 commit comments

Comments
 (0)