Skip to content

Commit bb74fec

Browse files
committed
Update project configs
1 parent e6c18b7 commit bb74fec

5 files changed

Lines changed: 34 additions & 22 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
site/
2+
bin/
3+
obj/
4+
.DS_Store
5+
.idea/
6+
*.user

Docs/assets/images/logo256.png

15 KB
Loading

Example/Example.csproj

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
64
<ImplicitUsings>enable</ImplicitUsings>
75
<Nullable>enable</Nullable>
6+
<PackageIcon>logo256.png</PackageIcon>
7+
<OutputType>Exe</OutputType>
8+
<TargetFramework>net6.0</TargetFramework>
9+
<LangVersion>10</LangVersion>
810
</PropertyGroup>
911

1012
<ItemGroup>
@@ -15,6 +17,11 @@
1517
<None Update="SampleCfg.txt">
1618
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1719
</None>
20+
<None Include="..\Docs\assets\images\logo256.png">
21+
<Pack>True</Pack>
22+
<PackagePath></PackagePath>
23+
<Link>logo256.png</Link>
24+
</None>
1825
</ItemGroup>
1926

2027
</Project>

Example/Program.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ public static void Main()
2929
{
3030
// Call the methods in this file here to see their effect.
3131

32-
//HowToLoadAConfig();
33-
//HowToCreateAConfig();
34-
//HowToSaveAConfig(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "TestCfg.ini"));
35-
//HowToCreateObjectsFromSections();
36-
//HowToCreateSectionsFromObjects();
37-
//HowToHandleArrays();
32+
// HowToLoadAConfig();
33+
// HowToCreateAConfig();
34+
// HowToSaveAConfig(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "TestCfg.ini"));
35+
// HowToCreateObjectsFromSections();
36+
// HowToCreateSectionsFromObjects();
37+
// HowToHandleArrays();
3838

3939
Console.ReadLine();
4040
}

Src/SharpConfig.csproj

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5-
<Description>An easy to use CFG/INI configuration library for .NET.</Description>
6-
<Copyright>Copyright 2013-2022 Cemalettin Dervis</Copyright>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<Description>An easy to use cfg/ini configuration library for .NET.</Description>
6+
<Copyright>Copyright 2013-2025 Cemalettin Dervis</Copyright>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
9-
<AssemblyVersion>3.3</AssemblyVersion>
10-
<FileVersion>3.3</FileVersion>
11-
<PackageIcon>SharpConfigLogo.png</PackageIcon>
12-
<PackageLicenseFile></PackageLicenseFile>
13-
<Version>3.3</Version>
9+
<AssemblyVersion>4.0</AssemblyVersion>
10+
<FileVersion>4.0</FileVersion>
11+
<PackageIcon>logo256.png</PackageIcon>
12+
<Version>4.0</Version>
1413
<Authors>Cemalettin Dervis</Authors>
1514
<PackageProjectUrl>https://github.com/cemdervis/SharpConfig</PackageProjectUrl>
16-
<RepositoryUrl>https://github.com/cemdervis/SharpConfig.git</RepositoryUrl>
15+
<RepositoryUrl>https://github.com/cdervis/SharpConfig</RepositoryUrl>
1716
<RepositoryType>git</RepositoryType>
18-
<PackageTags>sharpconfig config c# csharp cfg ini configuration library</PackageTags>
17+
<PackageTags>sharpconfig config c# csharp cfg ini configuration library settings</PackageTags>
1918
<PackageReleaseNotes>Please see the project URL for the latest release notes.</PackageReleaseNotes>
2019
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2120
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -44,13 +43,14 @@
4443
</PropertyGroup>
4544

4645
<ItemGroup>
47-
<None Include="..\README.md">
46+
<None Include="..\Docs\assets\images\logo256.png">
4847
<Pack>True</Pack>
49-
<PackagePath>\</PackagePath>
48+
<PackagePath></PackagePath>
49+
<Link>logo256.png</Link>
5050
</None>
51-
<None Include="..\SharpConfigLogo.png">
51+
<None Include="..\README.md">
5252
<Pack>True</Pack>
53-
<PackagePath></PackagePath>
53+
<PackagePath>\</PackagePath>
5454
</None>
5555
</ItemGroup>
5656

0 commit comments

Comments
 (0)