1
- <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <!-- Assembly Properties --> <TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks> <RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers> <LangVersion>latest</LangVersion> <Nullable>enable</Nullable> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> <Version>1.2.0</Version> <!-- Package Properties --> <Authors>Matt Nadareski</Authors> <Description>Serialization and deserialization helpers for various types</Description> <Copyright>Copyright (c) Matt Nadareski 2022-2023</Copyright> <PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl> <PackageReadmeFile>README.md</PackageReadmeFile> <RepositoryUrl>https://github.com/SabreTools/SabreTools.ASN1</RepositoryUrl> <RepositoryType>git</RepositoryType> <PackageTags>asn asn1 dot oid</PackageTags> <PackageLicenseExpression>MIT</PackageLicenseExpression> </PropertyGroup> <ItemGroup> <None Include="README.md" Pack="true" PackagePath=""/> </ItemGroup> <!-- Support for old .NET versions --> <ItemGroup Condition="$(TargetFramework.StartsWith(`net2`)) OR $(TargetFramework.StartsWith(`net3`))"> <PackageReference Include="Net30.LinqBridge" Version="1.3.0" /> <PackageReference Include="NetLegacySupport.Numerics" Version="1.0.1" /> </ItemGroup> <ItemGroup> <PackageReference Include="SabreTools.IO" Version="1.3.0" /> </ItemGroup> </Project>
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+
3
+ <PropertyGroup >
4
+ <!-- Assembly Properties -->
5
+ <TargetFrameworks >net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks >
6
+ <RuntimeIdentifiers >win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers >
7
+ <LangVersion >latest</LangVersion >
8
+ <Nullable >enable</Nullable >
9
+ <TreatWarningsAsErrors >true</TreatWarningsAsErrors >
10
+ <Version >1.3.0</Version >
11
+
12
+ <!-- Package Properties -->
13
+ <Authors >Matt Nadareski</Authors >
14
+ <Description >Serialization and deserialization helpers for various types</Description >
15
+ <Copyright >Copyright (c) Matt Nadareski 2022-2023</Copyright >
16
+ <PackageProjectUrl >https://github.com/SabreTools/</PackageProjectUrl >
17
+ <PackageReadmeFile >README.md</PackageReadmeFile >
18
+ <RepositoryUrl >https://github.com/SabreTools/SabreTools.ASN1</RepositoryUrl >
19
+ <RepositoryType >git</RepositoryType >
20
+ <PackageTags >asn asn1 dot oid</PackageTags >
21
+ <PackageLicenseExpression >MIT</PackageLicenseExpression >
22
+ </PropertyGroup >
23
+
24
+ <ItemGroup >
25
+ <None Include =" README.md" Pack =" true" PackagePath =" " />
26
+ </ItemGroup >
27
+
28
+ <!-- Support for old .NET versions -->
29
+ <ItemGroup Condition =" $(TargetFramework.StartsWith(`net2`)) OR $(TargetFramework.StartsWith(`net3`))" >
30
+ <PackageReference Include =" Net30.LinqBridge" Version =" 1.3.0" />
31
+ <PackageReference Include =" NetLegacySupport.Numerics" Version =" 1.0.1" />
32
+ </ItemGroup >
33
+
34
+ <ItemGroup >
35
+ <PackageReference Include =" SabreTools.IO" Version =" 1.3.0" />
36
+ </ItemGroup >
37
+
38
+ </Project >
0 commit comments