|  | 
| 1 | 1 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 
| 2 | 2 | 
 | 
| 3 |  | -	<!-- Solution-wide properties for NuGet packaging --> | 
| 4 |  | -	<PropertyGroup> | 
| 5 |  | -		<VersionPrefix>2.7.0</VersionPrefix> | 
|  | 3 | +    <!-- Solution-wide properties for NuGet packaging --> | 
|  | 4 | +    <PropertyGroup> | 
|  | 5 | +        <VersionPrefix>2.7.0</VersionPrefix> | 
| 6 | 6 |         <VersionSuffix>alpha</VersionSuffix> | 
| 7 |  | -		<Authors>Firely</Authors> | 
| 8 |  | -		<Company>Firely (https://fire.ly)</Company> | 
| 9 |  | -		<Copyright>Copyright 2015-2025 Firely</Copyright> | 
| 10 |  | -		<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks> | 
| 11 |  | -		<RepositoryType>git</RepositoryType> | 
| 12 |  | -		<RepositoryUrl>https://github.com/FirelyTeam/firely-validator-api</RepositoryUrl> | 
| 13 |  | -		<PackageLicenseFile>LICENSE</PackageLicenseFile> | 
| 14 |  | -		<PackageReadmeFile>README.md</PackageReadmeFile> | 
| 15 |  | -	</PropertyGroup> | 
|  | 7 | +        <Authors>Firely</Authors> | 
|  | 8 | +        <Company>Firely (https://fire.ly)</Company> | 
|  | 9 | +        <Copyright>Copyright 2015-2025 Firely</Copyright> | 
|  | 10 | +        <TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks> | 
|  | 11 | +        <RepositoryType>git</RepositoryType> | 
|  | 12 | +        <RepositoryUrl>https://github.com/FirelyTeam/firely-validator-api</RepositoryUrl> | 
|  | 13 | +        <PackageLicenseFile>LICENSE</PackageLicenseFile> | 
|  | 14 | +        <PackageReadmeFile>README.md</PackageReadmeFile> | 
|  | 15 | +    </PropertyGroup> | 
| 16 | 16 | 
 | 
| 17 |  | -	<ItemGroup> | 
| 18 |  | -		<None Include="..\..\LICENSE" Pack="true" PackagePath=""/> | 
| 19 |  | -		<None Include="..\..\README.md" Pack="true" PackagePath=""/> | 
| 20 |  | -	</ItemGroup> | 
|  | 17 | +    <ItemGroup> | 
|  | 18 | +        <None Include="..\..\LICENSE" Pack="true" PackagePath=""/> | 
|  | 19 | +        <None Include="..\..\README.md" Pack="true" PackagePath=""/> | 
|  | 20 | +    </ItemGroup> | 
| 21 | 21 | 
 | 
| 22 |  | -	<!-- Compiler settings --> | 
| 23 |  | -	<PropertyGroup> | 
| 24 |  | -		<LangVersion>12.0</LangVersion> | 
| 25 |  | -		<GenerateDocumentationFile>True</GenerateDocumentationFile> | 
| 26 |  | -		<Nullable>enable</Nullable> | 
| 27 |  | -		<EnableNETAnalyzers>true</EnableNETAnalyzers> | 
| 28 |  | -	</PropertyGroup> | 
|  | 22 | +    <!-- Compiler settings --> | 
|  | 23 | +    <PropertyGroup> | 
|  | 24 | +        <LangVersion>12.0</LangVersion> | 
|  | 25 | +        <GenerateDocumentationFile>True</GenerateDocumentationFile> | 
|  | 26 | +        <Nullable>enable</Nullable> | 
|  | 27 | +        <EnableNETAnalyzers>true</EnableNETAnalyzers> | 
|  | 28 | +        <TreatWarningsAsErrors>true</TreatWarningsAsErrors> | 
|  | 29 | +    </PropertyGroup> | 
| 29 | 30 | 
 | 
| 30 |  | -	<PropertyGroup> | 
| 31 |  | -		<FirelySdkVersion>6.0.0-alpha3-20250618.3</FirelySdkVersion> | 
| 32 |  | -	</PropertyGroup> | 
|  | 31 | +    <PropertyGroup> | 
|  | 32 | +        <FirelySdkVersion>6.0.0-beta1</FirelySdkVersion> | 
|  | 33 | +    </PropertyGroup> | 
| 33 | 34 | 
 | 
| 34 |  | -	<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | 
| 35 |  | -		<DebugType>full</DebugType> | 
| 36 |  | -		<DebugSymbols>true</DebugSymbols> | 
| 37 |  | -		<IncludeSymbols>true</IncludeSymbols> | 
| 38 |  | -		<Optimize>false</Optimize> | 
| 39 |  | -		<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants> | 
| 40 |  | -		<LibraryPKHash></LibraryPKHash> | 
| 41 |  | -	</PropertyGroup> | 
|  | 35 | +    <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | 
|  | 36 | +        <DebugType>full</DebugType> | 
|  | 37 | +        <DebugSymbols>true</DebugSymbols> | 
|  | 38 | +        <IncludeSymbols>true</IncludeSymbols> | 
|  | 39 | +        <Optimize>false</Optimize> | 
|  | 40 | +        <DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants> | 
|  | 41 | +        <LibraryPKHash></LibraryPKHash> | 
|  | 42 | +    </PropertyGroup> | 
| 42 | 43 | 
 | 
| 43 |  | -	<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | 
| 44 |  | -		<IncludeSymbols>True</IncludeSymbols> | 
| 45 |  | -		<SignAssembly>True</SignAssembly> | 
| 46 |  | -		<DelaySign>true</DelaySign> | 
| 47 |  | -		<AssemblyOriginatorKeyFile>..\..\FirelyValidatorPubKey.snk</AssemblyOriginatorKeyFile> | 
| 48 |  | -		<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | 
| 49 |  | -		<SymbolPackageFormat>snupkg</SymbolPackageFormat> | 
| 50 |  | -		<LibraryPKHash>0024000004800000940000000602000000240000525341310004000001000100c11eea5df3095844b027f018b356bc326a5a30b1f245010ad789589aa685569b2eb7f5f2ea5c49dafed338e3d9969eab21848c6c20a6b0a22c5ff7797d9a5062d7f3e42478e905d72a3dde344086a003f2df9deeb838e206d92c8cc59150c3151e9490381321f77a716e0a2b24a585b302ba2b3db37966a3da9abe4c601ba4c1</LibraryPKHash> | 
| 51 |  | -	</PropertyGroup> | 
|  | 44 | +    <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | 
|  | 45 | +        <IncludeSymbols>True</IncludeSymbols> | 
|  | 46 | +        <SignAssembly>True</SignAssembly> | 
|  | 47 | +        <DelaySign>true</DelaySign> | 
|  | 48 | +        <AssemblyOriginatorKeyFile>..\..\FirelyValidatorPubKey.snk</AssemblyOriginatorKeyFile> | 
|  | 49 | +        <GeneratePackageOnBuild>True</GeneratePackageOnBuild> | 
|  | 50 | +        <SymbolPackageFormat>snupkg</SymbolPackageFormat> | 
|  | 51 | +        <LibraryPKHash>0024000004800000940000000602000000240000525341310004000001000100c11eea5df3095844b027f018b356bc326a5a30b1f245010ad789589aa685569b2eb7f5f2ea5c49dafed338e3d9969eab21848c6c20a6b0a22c5ff7797d9a5062d7f3e42478e905d72a3dde344086a003f2df9deeb838e206d92c8cc59150c3151e9490381321f77a716e0a2b24a585b302ba2b3db37966a3da9abe4c601ba4c1</LibraryPKHash> | 
|  | 52 | +    </PropertyGroup> | 
| 52 | 53 | 
 | 
| 53 |  | -	<PropertyGroup> | 
| 54 |  | -		<!-- Error	CS4014	Because this call is not awaited, execution of the current method continues before the call is completed.  | 
|  | 54 | +    <PropertyGroup> | 
|  | 55 | +        <!-- Error	CS4014	Because this call is not awaited, execution of the current method continues before the call is completed.  | 
| 55 | 56 |     Consider applying the 'await' operator to the result of the call.	--> | 
| 56 |  | -		<WarningsAsErrors>CS4014</WarningsAsErrors> | 
| 57 |  | -		<WarningsNotAsErrors>NU5104</WarningsNotAsErrors> | 
| 58 |  | -		<!-- RS0026/RS0027 falsely complains about misuse of optional parameters in the public API--> | 
| 59 |  | -		<NoWarn>RS0027;ExperimentalApi;SDK0001</NoWarn> | 
| 60 |  | -		<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | 
| 61 |  | -	</PropertyGroup> | 
|  | 57 | +        <WarningsAsErrors>CS4014</WarningsAsErrors> | 
|  | 58 | +        <WarningsNotAsErrors>NU5104</WarningsNotAsErrors> | 
|  | 59 | +        <!-- RS0026/RS0027 falsely complains about misuse of optional parameters in the public API--> | 
|  | 60 | +        <NoWarn>RS0027;ExperimentalApi;SDK0001</NoWarn> | 
|  | 61 | +        <TreatWarningsAsErrors>true</TreatWarningsAsErrors> | 
|  | 62 | +    </PropertyGroup> | 
| 62 | 63 | </Project> | 
0 commit comments