mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00

* Add config endpoint with version and gitHash in response * Remove gitHash from version, formatting and other improvements * change name of variable in ConfigController * Update to properly get gitHash * SM-94: Add global settings for api url * SM-94: ConfigController cleanup * SM-94: Make version and gitHash available for all projects, using AssemblyHelper * Update ConfigResponseModel GetVersion() call * Change AssemblyHelpers.cs to use the UTF-8 charset * SM-94: Use AssemblyHelpers.GetVersion and deprecate CoreHelpers.GetVersion * SM-90: Add other BaseServiceUriSettings urls * SM-94: Fix dotnet format issue * remove old GetVersion method * Add back the linebreak * Fix typo in Directory.Build.props Co-authored-by: Oscar Hinton <Hinton@users.noreply.github.com> Co-authored-by: Oscar Hinton <Hinton@users.noreply.github.com>
71 lines
2.6 KiB
XML
71 lines
2.6 KiB
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<!--2022.6.2-->
|
|
<Version>2022.8.4</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/Swashbuckle.AspNetCore/
|
|
-->
|
|
<MicrosoftVisualStudioWebCodeGenerationDesignVersion>6.0.3</MicrosoftVisualStudioWebCodeGenerationDesignVersion>
|
|
<!--
|
|
NuGet: https://www.nuget.org/packages/NSubstitute/
|
|
-->
|
|
<NSubstitueVersion>4.3.0</NSubstitueVersion>
|
|
<!--
|
|
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> |