Skip to content

Commit

Permalink
Merge pull request #2 from invocative/rc3
Browse files Browse the repository at this point in the history
Update Directory.Build.props and Invocative.Neko.Framework.csproj
  • Loading branch information
0xF6 committed Jan 13, 2024
2 parents 1e7a558 + 7a03ba6 commit 3bc3490
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 7 deletions.
17 changes: 15 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<Version>1.0-rc.2</Version>
<Version>1.0-rc.3</Version>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<Deterministic>true</Deterministic>
<Features>strict</Features>
Expand All @@ -13,8 +13,21 @@
<Copyright>(C) 2024 Invocative Studio</Copyright>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<PackageProjectUrl>https://github.com/invocative/neko.framework</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>


</PropertyGroup>

<ItemGroup>
<None Include="icon.png">
<Pack>True</Pack>
<PackagePath>/</PackagePath>
</None>
</ItemGroup>

<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0'">
<LibNetSharedVersion>6.0.*</LibNetSharedVersion>
Expand Down
7 changes: 3 additions & 4 deletions src/core/Invocative.Neko.Framework.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Invocative.Neko.Framework</RootNamespace>
<Nullable>enable</Nullable>

<Title>Neko Core Abstractions Library</Title>

<Description>Core library for neko framework</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Flurl.Http" Version="4.0.1" />
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<Folder Include="Features\" />
</ItemGroup>
</Project>
Binary file added src/core/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/features/Authorization/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/features/Controllers/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/features/Database.Npgsql/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/features/Database/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/features/HangFire/HangFireFeature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ public override void BeforeRun(WebApplication webBuilder)
[PublicAPI]
public static class HangFireFeatureIAppBuilder
{
public static IAppBuilder WebSockets(this IAppBuilder builder, Action<IGlobalConfiguration, IAppCreationContext> config)
public static IAppBuilder HangFire(this IAppBuilder builder, Action<IGlobalConfiguration, IAppCreationContext> config)
=> builder.InjectFeature(x => new HangFireFeature(config, x));
}
Binary file added src/features/HangFire/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/features/Logging/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/features/Stl.Fusion/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/features/WebSocket/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/sandbox/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3bc3490

Please sign in to comment.