-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPMLSQLite.csproj
More file actions
49 lines (42 loc) · 1.63 KB
/
Copy pathPMLSQLite.csproj
File metadata and controls
49 lines (42 loc) · 1.63 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AvevaVersion Condition="'$(AvevaVersion)'==''">E3D3.1</AvevaVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<PublishRelease>true</PublishRelease>
<DebugType>none</DebugType>
<Copyright>Copyright (c) 2026 K.Awata</Copyright>
<Version>0.3.1</Version>
</PropertyGroup>
<Choose>
<When Condition="'$(AvevaVersion)'=='E3D2.1'">
<PropertyGroup>
<PlatformTarget>x86</PlatformTarget>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<PMLNetPath>C:\Program Files (x86)\AVEVA\Everything3D2.10\PMLNet.dll</PMLNetPath>
</PropertyGroup>
</When>
<When Condition="'$(AvevaVersion)'=='E3D3.1'">
<PropertyGroup>
<PlatformTarget>x86</PlatformTarget>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<PMLNetPath>C:\Program Files (x86)\AVEVA\Everything3D3.1\PMLNet.dll</PMLNetPath>
</PropertyGroup>
</When>
<When Condition="'$(AvevaVersion)'=='UE4.0'">
<PropertyGroup>
<PlatformTarget>x64</PlatformTarget>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PMLNetPath>C:\Program Files\WindowsApps\AVEVA.UnifiedEngineering_4010.2604.210.1901_x64__rmxc60bdg8z8w\VFS\ProgramFilesX64\AVEVA\UE\PMLNet.dll</PMLNetPath>
</PropertyGroup>
</When>
</Choose>
<ItemGroup>
<Reference Include="PMLNet">
<HintPath>$(PMLNetPath)</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
</ItemGroup>
</Project>