mirror of
https://github.com/bitwarden/server.git
synced 2025-01-26 22:31:30 +01:00
8262af3c53
* Fix typo in error message: 'Unkown' -> 'Unknown' * Fix typos in error message * Fix typo in example text: 'licence' -> 'license' * Fix typo in validation: 'Ooganization' -> 'Organization' * Fix typo in text string: 'compatibilty' -> 'compatibility' * Fix typo: 'ProviderDisllowedOrganizationTypes' -> 'ProviderDisallowedOrganizationTypes' * Fix typo: 'NSubstitueVersion' -> 'NSubstituteVersion' * Fix typo: 'CreateIntialInvite' -> 'CreateInitialInvite' * Fix typo: '_queuryScheme' -> '_queryScheme' * Fix typo: 'GetApplicationCacheServiceBusSubcriptionName' -> 'GetApplicationCacheServiceBusSubscriptionName' * Fix typo: 'metaDataRespository' -> 'metaDataRepository' * Fix typo: 'cipherAttachements' -> 'cipherAttachments' * Fix typo: 'savedEmergencyAccesss' -> 'savedEmergencyAccesses' * Fix typo: 'owerOrgUser' -> 'ownerOrgUser' * Fix typo: 'Organiation' -> 'Organization' * Fix typo: 'extistingUser' -> 'existingUser' * Fix typo: 'availibleAccess' -> 'availableAccess' * Fix typo: 'HasEnouphStorage' -> 'HasEnoughStorage' * Fix typo: 'extistingOrg' -> 'existingOrg' * Fix typo: 'subcriber' -> 'subscriber' * Fix typo: 'availibleCollections' -> 'availableCollections' * Fix typo: 'Succes' -> 'Success' * Fix typo: 'CreateAsync_UpdateWithCollecitons_Works' -> 'CreateAsync_UpdateWithCollections_Works' * Fix typo: 'BadInsallationId' -> 'BadInstallationId' * Fix typo: 'OrgNotFamiles' -> 'OrgNotFamilies' * Revert "Fix typo: 'Organiation' -> 'Organization'" This reverts commit8aadad1c25
. * Revert "Fix typos in error message" This reverts commit81d201fc09
. --------- Co-authored-by: Daniel James Smith <djsmith@web.de>
67 lines
2.4 KiB
XML
67 lines
2.4 KiB
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<!--2022.6.2-->
|
|
<Version>2023.4.3</Version>
|
|
<RootNamespace>Bit.$(MSBuildProjectName)</RootNamespace>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
This section is for packages that we use multiple times throughout the solution
|
|
It gives us a single place to manage the version to ensure we are using the same version
|
|
across the solution.
|
|
-->
|
|
<PropertyGroup>
|
|
<!--
|
|
NuGet: https://www.nuget.org/packages/Microsoft.NET.Test.Sdk
|
|
-->
|
|
<MicrosoftNetTestSdkVersion>17.1.0</MicrosoftNetTestSdkVersion>
|
|
<!--
|
|
NuGet: https://www.nuget.org/packages/xunit
|
|
-->
|
|
<XUnitVersion>2.4.1</XUnitVersion>
|
|
<!--
|
|
NuGet: https://www.nuget.org/packages/xunit
|
|
-->
|
|
<XUnitRunnerVisualStudioVersion>2.4.3</XUnitRunnerVisualStudioVersion>
|
|
<!--
|
|
NuGet: https://www.nuget.org/packages/coverlet.collector/
|
|
-->
|
|
<CoverletCollectorVersion>3.1.2</CoverletCollectorVersion>
|
|
<!--
|
|
NuGet: https://www.nuget.org/packages/NSubstitute/
|
|
-->
|
|
<NSubstituteVersion>4.3.0</NSubstituteVersion>
|
|
<!--
|
|
NuGet: https://www.nuget.org/packages/AutoFixture.Xunit2/
|
|
-->
|
|
<AutoFixtureXUnit2Version>4.17.0</AutoFixtureXUnit2Version>
|
|
<!--
|
|
NuGet: https://www.nuget.org/packages/AutoFixture.AutoNSubstitute/
|
|
-->
|
|
<AutoFixtureAutoNSubstituteVersion>4.17.0</AutoFixtureAutoNSubstituteVersion>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
This section is for getting & setting the gitHash value, which can easily be accessed
|
|
via the Core.Utilities.AssemblyHelpers class.
|
|
-->
|
|
<Target Name="SetSourceRevisionId" BeforeTargets="CoreGenerateAssemblyInfo">
|
|
<Exec Command="git describe --long --always --dirty --exclude=* --abbrev=8" ConsoleToMSBuild="True" IgnoreExitCode="False">
|
|
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput"/>
|
|
</Exec>
|
|
</Target>
|
|
<Target Name="WriteRevision" AfterTargets="SetSourceRevisionId">
|
|
<ItemGroup>
|
|
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
|
|
<_Parameter1>GitHash</_Parameter1>
|
|
<_Parameter2>$(SourceRevisionId)</_Parameter2>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
</Target>
|
|
|
|
</Project> |