3 changed files with 102 additions and 102 deletions
-
42Apewer.Source/Apewer.Source.csproj
-
36Apewer.Web/Apewer.Web.csproj
-
126Apewer.Windows/Apewer.Windows.csproj
@ -1,29 +1,29 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
|
||||
<Import Project="..\Apewer\Apewer.props" /> |
|
||||
|
<Import Project="..\Apewer\Apewer.props" /> |
||||
|
|
||||
<PropertyGroup> |
|
||||
<DefineConstants>SOURCE;$(DefineConstants);</DefineConstants> |
|
||||
<DefineConstants Condition="'$(TargetFramework)'=='netstandard2.0'">MYSQL_6_10;$(DefineConstants);</DefineConstants> |
|
||||
<DefineConstants Condition="'$(TargetFramework)'=='net40'">MYSQL_6_9;$(DefineConstants);</DefineConstants> |
|
||||
<TargetFrameworks>netstandard2.0;net40;net20</TargetFrameworks> |
|
||||
</PropertyGroup> |
|
||||
|
<PropertyGroup> |
||||
|
<DefineConstants>SOURCE;$(DefineConstants);</DefineConstants> |
||||
|
<DefineConstants Condition="'$(TargetFramework)'=='netstandard2.0'">MYSQL_6_10;$(DefineConstants);</DefineConstants> |
||||
|
<DefineConstants Condition="'$(TargetFramework)'=='net40'">MYSQL_6_9;$(DefineConstants);</DefineConstants> |
||||
|
<TargetFrameworks>netstandard2.0;net40;net20</TargetFrameworks> |
||||
|
</PropertyGroup> |
||||
|
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\Apewer\Apewer.csproj" /> |
|
||||
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.110" PrivateAssets="all" /> |
|
||||
</ItemGroup> |
|
||||
|
<ItemGroup> |
||||
|
<ProjectReference Include="..\Apewer\Apewer.csproj" /> |
||||
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.110" PrivateAssets="all" /> |
||||
|
</ItemGroup> |
||||
|
|
||||
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> |
|
||||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.1" /> |
|
||||
<PackageReference Include="System.Data.SqlClient" Version="4.4.3" /> |
|
||||
<PackageReference Include="System.Security.Permissions" Version="4.4.1" /> |
|
||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.4.0" /> |
|
||||
</ItemGroup> |
|
||||
|
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> |
||||
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.1" /> |
||||
|
<PackageReference Include="System.Data.SqlClient" Version="4.4.3" /> |
||||
|
<PackageReference Include="System.Security.Permissions" Version="4.4.1" /> |
||||
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.4.0" /> |
||||
|
</ItemGroup> |
||||
|
|
||||
<ItemGroup Condition="'$(TargetFramework)'=='net40'"> |
|
||||
<Reference Include="System.Configuration" /> |
|
||||
<Reference Include="System.Transactions" /> |
|
||||
</ItemGroup> |
|
||||
|
<ItemGroup Condition="'$(TargetFramework)'=='net40'"> |
||||
|
<Reference Include="System.Configuration" /> |
||||
|
<Reference Include="System.Transactions" /> |
||||
|
</ItemGroup> |
||||
|
|
||||
</Project> |
</Project> |
||||
@ -1,25 +1,25 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
|
||||
<Import Project="..\Apewer\Apewer.props" /> |
|
||||
|
<Import Project="..\Apewer\Apewer.props" /> |
||||
|
|
||||
<PropertyGroup> |
|
||||
<DefineConstants>WEB;$(DefineConstants);</DefineConstants> |
|
||||
<TargetFrameworks>netcoreapp3.1;net40;net20</TargetFrameworks> |
|
||||
</PropertyGroup> |
|
||||
|
<PropertyGroup> |
||||
|
<DefineConstants>WEB;$(DefineConstants);</DefineConstants> |
||||
|
<TargetFrameworks>netcoreapp3.1;net40;net20</TargetFrameworks> |
||||
|
</PropertyGroup> |
||||
|
|
||||
<ItemGroup> |
|
||||
<EmbeddedResource Include="FavIcon.ico" /> |
|
||||
<EmbeddedResource Include="WebConfig40.xml" /> |
|
||||
<EmbeddedResource Include="WebConfigStd.xml" /> |
|
||||
<EmbeddedResource Include="WebConfig461.xml" /> |
|
||||
</ItemGroup> |
|
||||
|
<ItemGroup> |
||||
|
<EmbeddedResource Include="FavIcon.ico" /> |
||||
|
<EmbeddedResource Include="WebConfig40.xml" /> |
||||
|
<EmbeddedResource Include="WebConfigStd.xml" /> |
||||
|
<EmbeddedResource Include="WebConfig461.xml" /> |
||||
|
</ItemGroup> |
||||
|
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\Apewer\Apewer.csproj" /> |
|
||||
<FrameworkReference Condition="'$(TargetFramework)' == 'netcoreapp3.1'" Include="Microsoft.AspNetCore.App" /> |
|
||||
<Reference Condition="'$(TargetFramework)' == 'net461'" Include="System.Web" /> |
|
||||
<Reference Condition="'$(TargetFramework)' == 'net40'" Include="System.Web" /> |
|
||||
<Reference Condition="'$(TargetFramework)' == 'net20'" Include="System.Web" /> |
|
||||
</ItemGroup> |
|
||||
|
<ItemGroup> |
||||
|
<ProjectReference Include="..\Apewer\Apewer.csproj" /> |
||||
|
<FrameworkReference Condition="'$(TargetFramework)' == 'netcoreapp3.1'" Include="Microsoft.AspNetCore.App" /> |
||||
|
<Reference Condition="'$(TargetFramework)' == 'net461'" Include="System.Web" /> |
||||
|
<Reference Condition="'$(TargetFramework)' == 'net40'" Include="System.Web" /> |
||||
|
<Reference Condition="'$(TargetFramework)' == 'net20'" Include="System.Web" /> |
||||
|
</ItemGroup> |
||||
|
|
||||
</Project> |
</Project> |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue