Merge pull request #96 from oqtane/dev

sync
This commit is contained in:
Shaun Walker 2021-06-15 07:42:22 -04:00 committed by GitHub
commit a9efc2792e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 3 deletions

View File

@ -33,4 +33,8 @@
<ItemGroup>
<ProjectReference Include="..\Oqtane.Shared\Oqtane.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
</Project>

View File

@ -1,5 +1,12 @@
namespace Oqtane
namespace Oqtane.Client
{
/// <summary>
/// Dummy class used to collect shared resource strings for this application
/// </summary>
/// <remarks>
/// This class is mostly used with IStringLocalizer and IHtmlLocalizer interfaces.
/// The class must reside at the project root.
/// </remarks>
public class SharedResources
{

View File

@ -94,7 +94,7 @@ namespace Oqtane.Controllers
{
if (_config.GetSection("Runtime").Value == "WebAssembly")
{
return File(GetAssemblies(), System.Net.Mime.MediaTypeNames.Application.Octet, "oqtane.zip");
return File(GetAssemblies(), System.Net.Mime.MediaTypeNames.Application.Octet, "oqtane.dll");
}
else
{

View File

@ -53,7 +53,7 @@ V.3.0.0 ( Q4 2021 )
- [ ] Migration to .NET 6
V.2.2.0 ( Q3 2021 )
- [ ] Authentication flexibility ( ie. Azure B2C, Social logins, etc... )
- [ ] Authentication extensibility ( ie. Azure B2C, Social logins, etc... )
- [ ] Configurable password complexity for local authentication
V.2.1.0 ( Jun 4, 2021 )