-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathMoBi.CLI.Core.csproj
More file actions
41 lines (37 loc) · 1.85 KB
/
MoBi.CLI.Core.csproj
File metadata and controls
41 lines (37 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>NET8.0</TargetFramework>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<PackageTags>open-systems-pharmacology, ospsuite-components</PackageTags>
<Description>CLI Core functionalities for MoBi</Description>
<Authors>Open-Systems-Pharmacology</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\MoBi.CLI.Core.xml</DocumentationFile>
<NoWarn>1591</NoWarn>
<Version Condition="'$(Version)' == ''">13.0.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OSPSuite.Assets" Version="13.0.70" />
<PackageReference Include="OSPSuite.Infrastructure.Autofac" Version="13.0.70" />
<PackageReference Include="OSPSuite.Utility" Version="4.1.1.5" />
<PackageReference Include="OSPSuite.Core" Version="13.0.70" />
<PackageReference Include="OSPSuite.Presentation" Version="13.0.70" />
<PackageReference Include="OSPSuite.R" Version="13.0.70" />
<PackageReference Include="OSPSuite.Infrastructure" Version="13.0.70" />
<PackageReference Include="OSPSuite.Infrastructure.Castle" Version="13.0.70" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MoBi.Assets\MoBi.Assets.csproj" />
<ProjectReference Include="..\MoBi.Core\MoBi.Core.csproj" />
<ProjectReference Include="..\MoBi.Presentation\MoBi.Presentation.csproj" />
<ProjectReference Include="..\MoBi.Core\MoBi.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>