Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Samples/Directory.Packages.props
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,7 +3,7 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="UnitsNet" Version="5.75.0" />
<PackageVersion Include="UnitsNet" Version="6.0.0-pre021" />
<PackageVersion Include="MahApps.Metro" Version="2.4.11" />
<PackageVersion Include="Prism.Unity" Version="9.0.537" />
<PackageVersion Include="Prism.Wpf" Version="9.0.537" />
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,11 +21,7 @@
<Reference Include="System.Transactions" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)' != 'Official'">
<PackageReference Include="UnitsNet" VersionOverride="6.0.0-pre103" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)' == 'Official'">
<ItemGroup>
<PackageReference Include="UnitsNet" />
</ItemGroup>
</Project>
6 changes: 1 addition & 5 deletions Samples/UnitConverter.Console/UnitConverter.Console.csproj
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,11 +9,7 @@
<Platforms>AnyCPU</Platforms>
</PropertyGroup>

<ItemGroup Condition="'$(Configuration)' != 'Official'">
<PackageReference Include="UnitsNet" VersionOverride="6.0.0-pre103" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)' == 'Official'">
<ItemGroup>
<PackageReference Include="UnitsNet" />
</ItemGroup>

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,11 +26,7 @@
</ItemGroup>


<ItemGroup Condition="'$(Configuration)' != 'Official'">
<PackageReference Include="UnitsNet" VersionOverride="6.0.0-pre103" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)' == 'Official'">
<ItemGroup>
<PackageReference Include="UnitsNet" />
</ItemGroup>

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ public enum HowMuchUnit
[DebuggerDisplay(QuantityDebugProxy.DisplayFormat)]
[DebuggerTypeProxy(typeof(QuantityDebugProxy))]
public readonly struct HowMuch(QuantityValue value, HowMuchUnit unit) :
IArithmeticQuantity<HowMuch, HowMuchUnit>,
ILinearQuantity<HowMuch, HowMuchUnit>,
IEquatable<HowMuch>, IComparable<HowMuch>, IComparisonOperators<HowMuch, HowMuch, bool>,
IParsable<HowMuch>
{
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,11 +9,7 @@
<Platforms>AnyCPU</Platforms>
</PropertyGroup>

<ItemGroup Condition="'$(Configuration)' != 'Official'">
<PackageReference Include="UnitsNet" VersionOverride="6.0.0-pre103" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)' == 'Official'">
<ItemGroup>
<PackageReference Include="UnitsNet" />
</ItemGroup>

Expand Down
Loading