Skip to content

Commit

Permalink
chore: reorganize project files
Browse files Browse the repository at this point in the history
feat: add nuspec file for NuGet publishing
  • Loading branch information
justdmitry committed Dec 19, 2024
1 parent a859ac4 commit 6287694
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 15 deletions.
24 changes: 24 additions & 0 deletions FullEmojiList.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>FullEmojiList</id>
<version>13.0.0</version>
<description>Auto-generated C# file with all Unicode emoji.</description>
<authors>just_dmitry</authors>
<projectUrl>https://github.com/justdmitry/FullEmojiList</projectUrl>
<license type="expression">MIT</license>
<!--<icon></icon>-->
<readme>README.md</readme>
<releaseNotes>Full Emoji list (from Unicode version 13.0).</releaseNotes>
<copyright>© Dmitry Popov, 2020-2024</copyright>
<tags>emoji list unicode</tags>
<repository type="git" url="https://github.com/justdmitry/FullEmojiList.git" />
<contentFiles>
<files include="any/any/FullEmojiList.cs" buildAction="Compile" />
</contentFiles>
</metadata>
<files>
<file src="README.md" target="" />
<file src="FullEmojiList.cs" target="contentFiles/any/any/" />
</files>
</package>
22 changes: 7 additions & 15 deletions FullEmojiList.sln
Original file line number Diff line number Diff line change
@@ -1,28 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29728.190
# Visual Studio Version 17
VisualStudioVersion = 17.12.35527.113
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Generator", "Generator\Generator.csproj", "{E26A3B69-6400-4789-A5FF-23A15B10B7D3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{21298358-B848-49A9-86BB-A12A7A05FA4D}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
FullEmojiList.cs = FullEmojiList.cs
LICENSE = LICENSE
README.md = README.md
EndProjectSection
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Generator", "Generator.csproj", "{BA3A75ED-1A8B-4E51-8AED-67966F354DC9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E26A3B69-6400-4789-A5FF-23A15B10B7D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E26A3B69-6400-4789-A5FF-23A15B10B7D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E26A3B69-6400-4789-A5FF-23A15B10B7D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E26A3B69-6400-4789-A5FF-23A15B10B7D3}.Release|Any CPU.Build.0 = Release|Any CPU
{BA3A75ED-1A8B-4E51-8AED-67966F354DC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BA3A75ED-1A8B-4E51-8AED-67966F354DC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA3A75ED-1A8B-4E51-8AED-67966F354DC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BA3A75ED-1A8B-4E51-8AED-67966F354DC9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
1 change: 1 addition & 0 deletions Generator/Generator.csproj → Generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<NuspecFile>FullEmojiList.nuspec</NuspecFile>
</PropertyGroup>

<ItemGroup>
Expand Down
File renamed without changes.

0 comments on commit 6287694

Please # to comment.