Skip to content

Commit

Permalink
Ported to .NET 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
point85 committed Jan 24, 2024
1 parent 128116b commit 6e9acd7
Show file tree
Hide file tree
Showing 236 changed files with 6,827 additions and 16,566 deletions.
26 changes: 13 additions & 13 deletions CaliperSharp.sln
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31624.102
# Visual Studio Version 17
VisualStudioVersion = 17.8.34511.84
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CaliperSharp", "CaliperSharp\CaliperSharp.csproj", "{5DCF081B-13EE-4833-96D0-0A115F59A98E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CaliperSharp", "CaliperSharp\CaliperSharp.csproj", "{2F38D952-65E7-44AB-887D-0214C26408B6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CaliperSharpTests", "CaliperSharpTests\CaliperSharpTests.csproj", "{CD66FCE3-22C8-43F7-9113-AC5476DC968F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CaliperSharpTests", "CaliperSharpTests\CaliperSharpTests.csproj", "{66F4E3C8-3F1D-4392-AE3B-0F2DBB81584C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5DCF081B-13EE-4833-96D0-0A115F59A98E}.Debug|Any CPU.ActiveCfg = Release|Any CPU
{5DCF081B-13EE-4833-96D0-0A115F59A98E}.Debug|Any CPU.Build.0 = Release|Any CPU
{5DCF081B-13EE-4833-96D0-0A115F59A98E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5DCF081B-13EE-4833-96D0-0A115F59A98E}.Release|Any CPU.Build.0 = Release|Any CPU
{CD66FCE3-22C8-43F7-9113-AC5476DC968F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD66FCE3-22C8-43F7-9113-AC5476DC968F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD66FCE3-22C8-43F7-9113-AC5476DC968F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD66FCE3-22C8-43F7-9113-AC5476DC968F}.Release|Any CPU.Build.0 = Release|Any CPU
{2F38D952-65E7-44AB-887D-0214C26408B6}.Debug|Any CPU.ActiveCfg = Release|Any CPU
{2F38D952-65E7-44AB-887D-0214C26408B6}.Debug|Any CPU.Build.0 = Release|Any CPU
{2F38D952-65E7-44AB-887D-0214C26408B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2F38D952-65E7-44AB-887D-0214C26408B6}.Release|Any CPU.Build.0 = Release|Any CPU
{66F4E3C8-3F1D-4392-AE3B-0F2DBB81584C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{66F4E3C8-3F1D-4392-AE3B-0F2DBB81584C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{66F4E3C8-3F1D-4392-AE3B-0F2DBB81584C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{66F4E3C8-3F1D-4392-AE3B-0F2DBB81584C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D42F5523-21F6-40A0-8443-BE940CDFD34F}
SolutionGuid = {14E9933A-E38C-4F4E-B7B4-0ABBEA0690CE}
EndGlobalSection
EndGlobal
117 changes: 53 additions & 64 deletions CaliperSharp/CaliperSharp.csproj
Original file line number Diff line number Diff line change
@@ -1,79 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5DCF081B-13EE-4833-96D0-0A115F59A98E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Point85.Caliper.UnitOfMeasure</RootNamespace>
<AssemblyName>CaliperSharp</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<ApplicationIcon>UOM.ico</ApplicationIcon>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Units of Measure Library</Title>
<Version>2.0.0</Version>
<Company>Point85</Company>
<Description>The CaliperSharp C# library project manages units of measure and conversions between them. </Description>
<Copyright>2024</Copyright>
<PackageProjectUrl>https://github.com/point85/CaliperSharp</PackageProjectUrl>
<PackageIcon>UOM.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/point85/CaliperSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>uom conversion;units of measure;units;measurement units;uom;units of measurement</PackageTags>
<PackageReleaseNotes>.NET 8.0 port</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RunCodeAnalysis>true</RunCodeAnalysis>
<Prefer32Bit>false</Prefer32Bit>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Content Include="UOM.ico" />
</ItemGroup>

<ItemGroup>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<None Include="..\..\OEE-Designer\src\main\resources\images\UOM.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="PropertyManager.cs" />
<Compile Include="Quantity.cs" />
<Compile Include="MeasurementSystem.cs" />
<Compile Include="Prefix.cs" />
<Compile Include="Constant.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Symbolic.cs" />
<Compile Include="Unit.cs" />
<Compile Include="UnitOfMeasure.cs" />
<Compile Include="UnitType.cs" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<SubType>Designer</SubType>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include="Resources\Message.properties">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Resources\Unit.properties">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

</Project>
Binary file removed CaliperSharp/Documentation/CaliperSharpDiagram.png
Binary file not shown.
Binary file removed CaliperSharp/Documentation/PowerProduct.png
Binary file not shown.
88 changes: 0 additions & 88 deletions CaliperSharp/Documentation/html/annotated.html

This file was deleted.

Binary file removed CaliperSharp/Documentation/html/bc_s.png
Binary file not shown.
Binary file removed CaliperSharp/Documentation/html/bdwn.png
Binary file not shown.
Loading

0 comments on commit 6e9acd7

Please sign in to comment.