Skip to content

Commit

Permalink
chore: Update version (1.0.0-alpha00/1.0.0.9040)
Browse files Browse the repository at this point in the history
  • Loading branch information
nishy2000 committed Sep 4, 2020
1 parent 5ad2654 commit 65bb89b
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFrameworks>net40;net45;net451;net452;net46;net461;net462;net47;net471;net472;net48</TargetFrameworks>
<OutputType>Exe</OutputType>
<AssemblyVersion>1.0.0.8300</AssemblyVersion>
<FileVersion>1.0.0.8300</FileVersion>
<AssemblyVersion>1.0.0.9040</AssemblyVersion>
<FileVersion>1.0.0.9040</FileVersion>
<RootNamespace>NishySoftware.Utilities</RootNamespace>
<Version>1.0.0-alpha00</Version>
<Company>nishy software</Company>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,39 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Exe</OutputType>
<AssemblyVersion>1.0.0.9040</AssemblyVersion>
<FileVersion>1.0.0.9040</FileVersion>
<RootNamespace>NishySoftware.Utilities</RootNamespace>
<Version>1.0.0-alpha00</Version>
<Company>nishy software</Company>
<Authors>nishy software</Authors>
<PackageTags>.NET Framework Version detection</PackageTags>
<RepositoryUrl>https://github.com/nishy2000/DotNetDetector</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/nishy2000/DotNetDetector</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>©2020 nishy software</Copyright>
<PackageId>NishySoftware.DotNetDetector.ConsoleAppNet5</PackageId>
<Description>
Provides the ability to detect various .NET Framework versions.
-.NET Framework version installed on the system
-Target .NET Framework version when the app (EXE) was built
-NET Framework version used by the running application (EXE).
</Description>
<PackageReleaseNotes>
Changes
- [alpha00]Support .NET Framework
</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\DotNetDetector.ConsoleApp\Program.cs" Link="Program.cs" />
<ProjectReference Include="..\DotNetDetector\DotNetDetector.csproj" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DotNetDetector\DotNetDetector.csproj" />
<Compile Include="..\DotNetDetector.ConsoleApp\Program.cs" Link="Program.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp2;netcoreapp2.1;netcoreapp2.2;netcoreapp3;netcoreapp3.1</TargetFrameworks>
<AssemblyVersion>1.0.0.8300</AssemblyVersion>
<FileVersion>1.0.0.8300</FileVersion>
<OutputType>Exe</OutputType>
<AssemblyVersion>1.0.0.9040</AssemblyVersion>
<FileVersion>1.0.0.9040</FileVersion>
<RootNamespace>NishySoftware.Utilities</RootNamespace>
<Version>1.0.0-alpha00</Version>
<Company>nishy software</Company>
Expand All @@ -29,11 +29,11 @@
</PropertyGroup>

<ItemGroup>
<Compile Include="..\DotNetDetector.ConsoleApp\Program.cs" Link="Program.cs" />
<ProjectReference Include="..\DotNetDetector\DotNetDetector.csproj" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DotNetDetector\DotNetDetector.csproj" />
<Compile Include="..\DotNetDetector.ConsoleApp\Program.cs" Link="Program.cs" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/DotNetDetector/DotNetDetector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public enum FrameworkTypes
/// <summary>
/// Provides functionality to detect which version of the .NET Framework that is installed on the current machine.
/// </summary>
/// <returns>.NET Framework app: Detected version, null if version cannot be determined
/// <returns>.NET Framework app: Detected version, null if version cannot be determined.
/// .NET Core app/.NET app: null</returns>
public static Version DetectInstalledNetFrameworkVersion()
{
Expand Down
4 changes: 2 additions & 2 deletions src/DotNetDetector/DotNetDetector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFrameworks>net40;netcoreapp2</TargetFrameworks>

<AssemblyVersion>1.0.0.8310</AssemblyVersion>
<FileVersion>1.0.0.8310</FileVersion>
<AssemblyVersion>1.0.0.9040</AssemblyVersion>
<FileVersion>1.0.0.9040</FileVersion>
<RootNamespace>NishySoftware.Utilities</RootNamespace>
<Version>1.0.0-alpha00</Version>
<Company>nishy software</Company>
Expand Down

0 comments on commit 65bb89b

Please sign in to comment.