-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSysML2.NET.csproj
More file actions
51 lines (45 loc) · 2.48 KB
/
Copy pathSysML2.NET.csproj
File metadata and controls
51 lines (45 loc) · 2.48 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net10.0</TargetFrameworks>
<LangVersion>12.0</LangVersion>
<Version>0.23.0</Version>
<Description>A .NET implementation of the OMG SysML v2 specification.</Description>
<PackageId>SysML2.NET</PackageId>
<Company>Starion Group S.A.</Company>
<Copyright>Copyright © Starion Group S.A.</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/STARIONGROUP/SysML2.NET.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<Authors>Sam Gerené</Authors>
<RequireLicenseAcceptance>true</RequireLicenseAcceptance>
<PackageReleaseNotes>
[Add] Derived-property and operation implementations across the Extend layer, covering the Expression, Classifier, Behavior, Action, Constraint, Requirement, Port and Membership families
[Fix] Multiplicity is now enforced on all derived-property patterns (#312)
[Update] Microsoft.Extensions.Logging.Abstractions and System.Collections.Immutable floored to LTS 8.0.x, lowering the minimum version imposed on consumers (#328)
</PackageReleaseNotes>
<PackageIcon>cdp4-icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateSBOM>true</GenerateSBOM>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />
<PackageReference Include="Microsoft.Sbom.Targets" Version="4.1.5" PrivateAssets="all" />
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\cdp4-icon.png" Pack="true" PackagePath="\" />
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SysML2.NET.Dal" />
<InternalsVisibleTo Include="SysML2.NET.Dal.Tests" />
<InternalsVisibleTo Include="SysML2.NET.Serializer.Json" />
<InternalsVisibleTo Include="SysML2.NET.Serializer.Xmi" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SysML2.NET.Tests" />
<InternalsVisibleTo Include="SysML2.NET.Semantics.Tests" />
</ItemGroup>
</Project>