-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (34 loc) · 1.97 KB
/
Copy pathDirectory.Build.props
File metadata and controls
35 lines (34 loc) · 1.97 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
<Project>
<PropertyGroup>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<Deterministic>true</Deterministic>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<!--
The sibling-project graph differs from the retired embedded engine graph. During this
unmerged migration PR, restore is intentionally unlocked so local and CI paired builds
can refresh dependency assets. Lock files will be regenerated after the paired branches
are accepted and pinned to reviewed commits.
-->
<RestoreLockedMode>false</RestoreLockedMode>
<VersionPrefix>0.4.0</VersionPrefix>
<SourceRevisionId Condition="'$(SourceRevisionId)' == '' and '$(GITHUB_SHA)' != ''">$(GITHUB_SHA)</SourceRevisionId>
<IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
<RepositoryUrl>https://github.com/masarray/arsvin</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<Authors>Ari Sulistiono</Authors>
<Company>Ari Sulistiono</Company>
<Copyright>Copyright © 2026 Ari Sulistiono</Copyright>
<!--
ARSVIN and ArSubsv are derived applications. Reusable IEC 61850 logic is owned by
the sibling ARIEC61850 repository rather than an embedded copy in this repository.
-->
<ARIEC61850_ROOT Condition="'$(ARIEC61850_ROOT)' == ''">$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\ARIEC61850'))</ARIEC61850_ROOT>
<ARIEC61850_CORE_PROJECT>$(ARIEC61850_ROOT)\src\AR.Iec61850\AR.Iec61850.csproj</ARIEC61850_CORE_PROJECT>
<ARIEC61850_NPCAP_PROJECT>$(ARIEC61850_ROOT)\src\AR.Iec61850.Transports.Npcap\AR.Iec61850.Transports.Npcap.csproj</ARIEC61850_NPCAP_PROJECT>
</PropertyGroup>
</Project>