45 lines
1.7 KiB
XML
45 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
|
|
<!-- Build can target either RID from CLI/YAML; locally we'll build both via the target below -->
|
|
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
|
|
<AppendRuntimeIdentifierToOutputPath>true</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>latestmajor</LangVersion>
|
|
|
|
<!-- Where to mirror outputs (project-relative, stable in CI & local) -->
|
|
<!-- Adjust ..\..\..\ if your folder depth differs -->
|
|
<BasePackageAssembliesDir>$(MSBuildProjectDirectory)\..\..\..\BasePackage\Assemblies\</BasePackageAssembliesDir>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Imagoverum.FleetManagement.BizLogic\Imagoverum.FleetManagement.BizLogic.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Matrix42.Blob.Contracts">
|
|
<HintPath>..\..\..\..\Root\bin\Matrix42.Blob.Contracts.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Matrix42.WebApi.Contracts">
|
|
<HintPath>..\..\..\..\Root\bin\Matrix42.WebApi.Contracts.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Imagoverum.FleetManagement.Services.dll.host.config">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<M42ExtensionId>22be0879-4587-cf4b-333c-08de16408acb</M42ExtensionId>
|
|
<M42AssemblyPattern>$(MSBuildProjectName)*.*</M42AssemblyPattern>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\..\..\Extension.Assemblies.targets" Condition="Exists('..\..\..\Extension.Assemblies.targets')" />
|
|
|
|
</Project> |