-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathPKSim.CLI.Core.csproj
More file actions
42 lines (35 loc) · 1.4 KB
/
PKSim.CLI.Core.csproj
File metadata and controls
42 lines (35 loc) · 1.4 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
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<PackageTags>open-systems-pharmacology, ospsuite-components</PackageTags>
<Description>CLI Core functionalities for PK-Sim</Description>
<Authors>Open-Systems-Pharmacology</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\PKSim.CLI.Core.xml</DocumentationFile>
<NoWarn>1591</NoWarn>
<Version Condition="'$(Version)' == ''">12.1.0</Version>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\SolutionInfo.cs" Link="Properties\SolutionInfo.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OSPSuite.Assets" Version="12.1.109" />
<PackageReference Include="OSPSuite.Utility" Version="4.1.1.1" />
<PackageReference Include="OSPSuite.Core" Version="12.1.109" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PKSim.Core\PKSim.Core.csproj" />
</ItemGroup>
</Project>