-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathPKSim.UI.csproj
More file actions
76 lines (76 loc) · 3.39 KB
/
PKSim.UI.csproj
File metadata and controls
76 lines (76 loc) · 3.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<PackageTags>open-systems-pharmacology, ospsuite-components</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<NoWarn>1591</NoWarn>
<Version Condition="'$(Version)' == ''">13.0.0</Version>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\SolutionInfo.cs" Link="Properties\SolutionInfo.cs" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Properties\Resources.*" />
<None Remove="Properties\Settings.*" />
<EmbeddedResource Remove="Properties\Resources*.*" />
<Compile Remove="Properties\Settings*.*" />
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="packages.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.2" />
<PackageReference Include="OSPSuite.Assets" Version="13.0.68" />
<PackageReference Include="OSPSuite.DataBinding" Version="3.0.1.4" />
<PackageReference Include="OSPSuite.DataBinding.DevExpress" Version="6.0.1.5" />
<PackageReference Include="OSPSuite.DevExpress" Version="21.2.15.1" />
<PackageReference Include="OSPSuite.Utility" Version="4.1.1.5" />
<PackageReference Include="OSPSuite.Presentation" Version="13.0.68" />
<PackageReference Include="OSPSuite.UI" Version="13.0.68" />
<PackageReference Include="OSPSuite.Core" Version="13.0.68" />
<PackageReference Include="DevExpress.Win.Design" Version="21.2.15" Condition="'$(ExcludeDesigner)' != 'true'" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>
</PackagePath>
</None>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PKSim.Assets.Images\PKSim.Assets.Images.csproj" />
<ProjectReference Include="..\PKSim.Core\PKSim.Core.csproj" />
<ProjectReference Include="..\PKSim.Infrastructure\PKSim.Infrastructure.csproj" />
<ProjectReference Include="..\PKSim.Presentation\PKSim.Presentation.csproj" />
</ItemGroup>
</Project>