-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathPKSim.Infrastructure.csproj
More file actions
58 lines (51 loc) · 2.65 KB
/
PKSim.Infrastructure.csproj
File metadata and controls
58 lines (51 loc) · 2.65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<PackageTags>open-systems-pharmacology, ospsuite-components</PackageTags>
<Authors>Open-Systems-Pharmacology</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<NoWarn>1591</NoWarn>
<Version Condition="'$(Version)' == ''">12.2.0</Version>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\SolutionInfo.cs" Link="Properties\SolutionInfo.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentNHibernate" Version="3.4.0" />
<PackageReference Include="LumenWorksCsvReader" Version="4.0.0" />
<PackageReference Include="MarkdownLog.NS20" Version="0.10.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.2" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="4.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="OSPSuite.Assets" Version="12.2.17" />
<PackageReference Include="OSPSuite.Core" Version="12.2.17" />
<PackageReference Include="OSPSuite.Infrastructure" Version="12.2.17" />
<PackageReference Include="OSPSuite.Infrastructure.Castle" Version="12.2.17" />
<PackageReference Include="OSPSuite.Infrastructure.Export" Version="12.2.17" />
<PackageReference Include="OSPSuite.Infrastructure.Import" Version="12.2.17" />
<PackageReference Include="OSPSuite.Infrastructure.Reporting" Version="12.2.17" />
<PackageReference Include="OSPSuite.Infrastructure.Serialization" Version="12.2.17" />
<PackageReference Include="OSPSuite.Presentation.Serialization" Version="12.2.17" />
<PackageReference Include="OSPSuite.Utility" Version="4.1.1.1" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PKSim.Assets\PKSim.Assets.csproj" />
<ProjectReference Include="..\PKSim.Core\PKSim.Core.csproj" />
<ProjectReference Include="..\PKSim.Presentation\PKSim.Presentation.csproj" />
</ItemGroup>
</Project>