Skip to content

Commit

Permalink
Merge pull request #9 from shahabfar/speed-conversions
Browse files Browse the repository at this point in the history
update project file
  • Loading branch information
shahabfar authored Nov 22, 2024
2 parents 26205bd + c48164f commit a4ed248
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
12 changes: 6 additions & 6 deletions Univertall.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.12.35506.116
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Univertall", "src\Univertall\Univertall.csproj", "{E11CCE8E-CAB5-4C32-8BCD-00D056C6F00F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Univertall.Tests", "tests\Univertall.Tests\Univertall.Tests.csproj", "{1674AFF8-F0ED-4796-8B8C-38B41C114884}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples", "src\Samples\Samples.csproj", "{9C3BE5DF-3F5F-4B6B-A365-0604CCD0AD98}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Univertall", "src\Univertall\Univertall.csproj", "{1CC64F36-E71C-46FC-9711-DFC54D4FA1C3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E11CCE8E-CAB5-4C32-8BCD-00D056C6F00F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E11CCE8E-CAB5-4C32-8BCD-00D056C6F00F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E11CCE8E-CAB5-4C32-8BCD-00D056C6F00F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E11CCE8E-CAB5-4C32-8BCD-00D056C6F00F}.Release|Any CPU.Build.0 = Release|Any CPU
{1674AFF8-F0ED-4796-8B8C-38B41C114884}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1674AFF8-F0ED-4796-8B8C-38B41C114884}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1674AFF8-F0ED-4796-8B8C-38B41C114884}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -27,6 +23,10 @@ Global
{9C3BE5DF-3F5F-4B6B-A365-0604CCD0AD98}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9C3BE5DF-3F5F-4B6B-A365-0604CCD0AD98}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9C3BE5DF-3F5F-4B6B-A365-0604CCD0AD98}.Release|Any CPU.Build.0 = Release|Any CPU
{1CC64F36-E71C-46FC-9711-DFC54D4FA1C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1CC64F36-E71C-46FC-9711-DFC54D4FA1C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1CC64F36-E71C-46FC-9711-DFC54D4FA1C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1CC64F36-E71C-46FC-9711-DFC54D4FA1C3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
16 changes: 10 additions & 6 deletions src/Univertall/Univertall.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net9.0;net8.0;net7.0;net6.0</TargetFrameworks>
Expand All @@ -7,7 +7,7 @@
<Nullable>enable</Nullable>

<PackageId>Univertall</PackageId>
<PackageVersion>1.1.0</PackageVersion>
<PackageVersion>1.0.0</PackageVersion>
<Authors>Majid Shahabfar</Authors>
<Description>Univertall is a versatile and comprehensive unit conversion library for .NET Core. It provides an easy-to-use API for converting between various units of measurement, including volume, pressure, length, mass, etc. Ideal for developers needing reliable unit conversion functionality in their applications.</Description>
<PackageTags>unit conversion; .NET; library</PackageTags>
Expand All @@ -20,10 +20,14 @@
<AssemblyCompany>Shahabfar</AssemblyCompany>
<AssemblyProduct>Univertall</AssemblyProduct>
<AssemblyCopyright>Majid Shahabfar 2024</AssemblyCopyright>
<AssemblyVersion>1.1.0</AssemblyVersion>
<FileVersion>1.1.0</FileVersion>
<ProductVersion>1.1.0</ProductVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<ProductVersion>1.0.0</ProductVersion>
<PackageReadmeFile>NugetReadme.md</PackageReadmeFile>
</PropertyGroup>

</Project>
<ItemGroup>
<None Include="univertall.png" Pack="true" PackagePath="" />
<None Include="NugetReadme.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>

0 comments on commit a4ed248

Please sign in to comment.