-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathPKSim.UI.Tests.csproj
More file actions
57 lines (54 loc) · 2.82 KB
/
PKSim.UI.Tests.csproj
File metadata and controls
57 lines (54 loc) · 2.82 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<IsPackable>false</IsPackable>
<OutputPath>bin\$(Configuration)</OutputPath>
<Version Condition="'$(Version)' == ''">12.1.0</Version>
<RootNamespace>PKSim.UI</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="$(PkgOSPSuite_FuncParser)\OSPSuite.FuncParserNative\bin\native\x64\Release\OSPSuite.FuncParserNative.dll" Link="OSPSuite.FuncParserNative.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\pkparameters\OSPSuite.PKParameters.xml" Link="OSPSuite.PKParameters.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\dimensions\OSPSuite.Dimensions.xml" Link="OSPSuite.Dimensions.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<PackageReference Include="FakeItEasy" Version="8.3.0" />
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="nunit" Version="3.14.0" />
<PackageReference Include="OSPSuite.Assets" Version="12.1.98" />
<PackageReference Include="OSPSuite.BDDHelper" Version="4.0.1.1" />
<PackageReference Include="OSPSuite.Core" Version="12.1.98" />
<PackageReference Include="OSPSuite.SimModel" Version="4.0.0.75" />
<PackageReference Include="OSPSuite.UI" Version="12.1.98" />
<PackageReference Include="OSPSuite.FuncParser" Version="4.0.0.73" GeneratePathProperty="true" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" GeneratePathProperty="true" />
<None Include="..\..\src\Db\PKSimDB.sqlite" Link="PKSimDB.sqlite">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\PKSim.Core\PKSim.Core.csproj" />
<ProjectReference Include="..\..\src\PKSim.UI.Starter\PKSim.UI.Starter.csproj" />
<ProjectReference Include="..\..\src\PKSim.UI\PKSim.UI.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<ItemGroup>
<WindowsFiles Include="$(TargetDir)x64/SQLite.Interop.dll" />
</ItemGroup>
<Copy SourceFiles="@(WindowsFiles);" DestinationFolder="$(TargetFolder)" DestinationFiles="@(WindowsFiles->Replace('x64/SQLite.Interop.dll', 'SQLite.Interop.dll'))" />
</Target>
<PropertyGroup>
<ContentSQLiteInteropFiles>true</ContentSQLiteInteropFiles>
<CopySQLiteInteropFiles>false</CopySQLiteInteropFiles>
<CleanSQLiteInteropFiles>false</CleanSQLiteInteropFiles>
<CollectSQLiteInteropFiles>false</CollectSQLiteInteropFiles>
</PropertyGroup>
</Project>