mirror of https://github.com/abpframework/abp.git
17 changed files with 60 additions and 11 deletions
@ -0,0 +1,13 @@ |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Volo.Abp.AspNetCore.Mvc; |
|||
|
|||
namespace Volo.ClientSimulation.Demo.Controllers |
|||
{ |
|||
public class HomeController : AbpController |
|||
{ |
|||
public RedirectToPageResult Index() |
|||
{ |
|||
return RedirectToPage("/ClientSimulation/Index"); |
|||
} |
|||
} |
|||
} |
|||
@ -1,6 +1,6 @@ |
|||
[ |
|||
{ |
|||
"outputFile": "Pages/SimulationArea.css", |
|||
"inputFile": "Pages/SimulationArea.scss" |
|||
"outputFile": "Pages/ClientSimulation/SimulationArea.css", |
|||
"inputFile": "Pages/ClientSimulation/SimulationArea.scss" |
|||
} |
|||
] |
|||
@ -0,0 +1,14 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace Volo.ClientSimulation |
|||
{ |
|||
[DependsOn( |
|||
typeof(ClientSimulationModule), |
|||
typeof(AbpAspNetCoreMvcUiThemeSharedModule) |
|||
)] |
|||
public class ClientSimulationWebModule : AbpModule |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,16 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
|
|||
<PropertyGroup> |
|||
<TargetFramework>netcoreapp2.2</TargetFramework> |
|||
<RootNamespace>Volo.ClientSimulation</RootNamespace> |
|||
</PropertyGroup> |
|||
|
|||
<ItemGroup> |
|||
<ProjectReference Include="..\Volo.ClientSimulation\Volo.ClientSimulation.csproj" /> |
|||
</ItemGroup> |
|||
|
|||
<ItemGroup> |
|||
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.csproj" /> |
|||
</ItemGroup> |
|||
|
|||
</Project> |
|||
Loading…
Reference in new issue