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.
46 lines
1.2 KiB
46 lines
1.2 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\Apewer\_Common.props" />
|
|
|
|
<PropertyGroup>
|
|
<DefineConstants>$(DefineConstants);WEB;</DefineConstants>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFrameworks>net40;net20;netcoreapp3.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Apewer.Web</AssemblyName>
|
|
<Description></Description>
|
|
<PackageId>Apewer.Web</PackageId>
|
|
<RootNamespace>Apewer</RootNamespace>
|
|
<Title>Apewer.Web</Title>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="FavIcon.ico" />
|
|
<EmbeddedResource Include="WebConfig40.xml" />
|
|
<EmbeddedResource Include="WebConfigStd.xml" />
|
|
<EmbeddedResource Include="WebConfig461.xml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Apewer\Apewer.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='netcoreapp3.1'">
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net461'">
|
|
<Reference Include="System.Web" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net40'">
|
|
<Reference Include="System.Web" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net20'">
|
|
<Reference Include="System.Web" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|