feat: support parallel legacy and sandbox extensions
This commit is contained in:
52
Legacy/F4SDHelper/F4SD - Helper.Legacy.csproj
Normal file
52
Legacy/F4SDHelper/F4SD - Helper.Legacy.csproj
Normal file
@@ -0,0 +1,52 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net472</TargetFramework>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>C4IT.F4SDM</RootNamespace>
|
||||
<AssemblyName>C4ITF4SDM42WebApiHelper</AssemblyName>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
||||
<LangVersion>7.3</LangVersion>
|
||||
<Configurations>Debug;Release;Release_signed</Configurations>
|
||||
<F4SDCommonRoot Condition="'$(F4SDCommonRoot)' == ''">$(MSBuildProjectDirectory)\..\..\..\_Common</F4SDCommonRoot>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)' == 'Release' Or '$(Configuration)' == 'Release_signed'">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="$(F4SDCommonRoot)\C4IT.F4SD.Base.Ticket.cs">
|
||||
<Link>Common\C4IT.F4SD.Base.Ticket.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\..\F4SDHelper\Common\C4IT.F4SD.WebApi.Contracts.cs">
|
||||
<Link>Common\C4IT.F4SD.WebApi.Contracts.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\..\..\..\Common Code\Logging\C4IT.Logging.LogManager.cs">
|
||||
<Link>Common\C4IT.Logging.LogManager.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\..\SharedAssemblyInfo.cs">
|
||||
<Link>Properties\SharedAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="ValidateLegacySharedSources" BeforeTargets="PrepareForBuild">
|
||||
<Error Condition="!Exists('$(F4SDCommonRoot)\C4IT.F4SD.Base.Ticket.cs')"
|
||||
Text="Shared F4SD contract source not found. Set F4SDCommonRoot to the _Common directory." />
|
||||
</Target>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user