Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
atomsk-0 committed Jan 23, 2022
1 parent 275891f commit ba67e14
Show file tree
Hide file tree
Showing 10 changed files with 60 additions and 146 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
*.user
*.userosscache
*.sln.docstates
*.exe
*.nupkg
*.nuspec

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
Expand Down
16 changes: 0 additions & 16 deletions Easy-Log-Framework/Config.cs

This file was deleted.

49 changes: 0 additions & 49 deletions Easy-Log-Framework/Easy-Log-Framework.csproj

This file was deleted.

51 changes: 0 additions & 51 deletions Easy-Log-Framework/Logger.cs

This file was deleted.

10 changes: 5 additions & 5 deletions EasyLog.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 16.0.32106.194
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example", "Example\Example.csproj", "{DE22B76E-763A-4019-A1D8-07EEF4592308}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EasyLog", "EasyLog\EasyLog.csproj", "{458E8B74-C80E-45FF-B918-7E89F84714CF}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EasyLog", "EasyLog\EasyLog.csproj", "{869CD7D8-113A-4D0B-B658-842DF1D5241F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -17,10 +17,10 @@ Global
{DE22B76E-763A-4019-A1D8-07EEF4592308}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DE22B76E-763A-4019-A1D8-07EEF4592308}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DE22B76E-763A-4019-A1D8-07EEF4592308}.Release|Any CPU.Build.0 = Release|Any CPU
{458E8B74-C80E-45FF-B918-7E89F84714CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{458E8B74-C80E-45FF-B918-7E89F84714CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{458E8B74-C80E-45FF-B918-7E89F84714CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{458E8B74-C80E-45FF-B918-7E89F84714CF}.Release|Any CPU.Build.0 = Release|Any CPU
{869CD7D8-113A-4D0B-B658-842DF1D5241F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{869CD7D8-113A-4D0B-B658-842DF1D5241F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{869CD7D8-113A-4D0B-B658-842DF1D5241F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{869CD7D8-113A-4D0B-B658-842DF1D5241F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
4 changes: 0 additions & 4 deletions EasyLog/Config.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace EasyLog
{
Expand Down
59 changes: 45 additions & 14 deletions EasyLog/EasyLog.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,47 @@
<Project Sdk="Microsoft.NET.Sdk">

<?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')" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Easy-Log</PackageId>
<Version>1.0.1</Version>
<Description>Simple and easy Logging System for C# .NET</Description>
<Authors>0x74</Authors>
<PackageProjectUrl>https://github.com/byte-0x74/EasyLog</PackageProjectUrl>
<RepositoryUrl>https://github.com/byte-0x74/EasyLog</RepositoryUrl>
<PackageTags>log, logger, logging</PackageTags>
<PackageReleaseNotes>Changed to .net standart 2.1</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{869CD7D8-113A-4D0B-B658-842DF1D5241F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>EasyLog</RootNamespace>
<AssemblyName>EasyLog</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>

</Project>
<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>
</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>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Config.cs" />
<Compile Include="Logger.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
4 changes: 0 additions & 4 deletions EasyLog/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;

namespace EasyLog
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Easy-Log-Framework")]
[assembly: AssemblyTitle("EasyLog")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Easy-Log-Framework")]
[assembly: AssemblyProduct("EasyLog")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand All @@ -20,7 +20,7 @@
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("7fc206b0-d3c7-4010-8af3-09a71590e955")]
[assembly: Guid("869cd7d8-113a-4d0b-b658-842df1d5241f")]

// Version information for an assembly consists of the following four values:
//
Expand Down
4 changes: 4 additions & 0 deletions Example/Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\EasyLog\EasyLog.csproj" />
</ItemGroup>

</Project>

0 comments on commit ba67e14

Please sign in to comment.