mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<Import Project="..\..\..\..\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<AssemblyName>Volo.ClientSimulation.Web</AssemblyName>
|
|
<PackageId>Volo.ClientSimulation.Web</PackageId>
|
|
<OutputType>Library</OutputType>
|
|
<IsPackable>true</IsPackable>
|
|
<RootNamespace>Volo.ClientSimulation</RootNamespace>
|
|
<TypeScriptToolsVersion>2.8</TypeScriptToolsVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.csproj" />
|
|
<ProjectReference Include="..\Volo.ClientSimulation\Volo.ClientSimulation.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Pages\**\*.cshtml" />
|
|
<EmbeddedResource Include="Pages\**\*.js" />
|
|
<EmbeddedResource Include="Pages\**\*.css" />
|
|
<EmbeddedResource Include="Pages\**\*.scss" />
|
|
<Content Remove="Pages\**\*.cshtml" />
|
|
<Content Remove="Pages\**\*.js" />
|
|
<Content Remove="Pages\**\*.css" />
|
|
<Content Remove="Pages\**\*.scss" />
|
|
<Content Remove="compilerconfig.json" />
|
|
<Content Remove="Properties\launchSettings.json" />
|
|
<None Include="compilerconfig.json" />
|
|
<None Include="Properties\launchSettings.json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|