Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Project #281

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Natasha.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "report.template", "report.t
.github\ISSUE_TEMPLATE\config.yml = .github\ISSUE_TEMPLATE\config.yml
.github\ISSUE_TEMPLATE\feature.yml = .github\ISSUE_TEMPLATE\feature.yml
.github\ISSUE_TEMPLATE\feedback.yml = .github\ISSUE_TEMPLATE\feedback.yml
.github\ISSUE_TEMPLATE\tasklist.md = .github\ISSUE_TEMPLATE\tasklist.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pr", "pr", "{15F494AB-94DF-4334-BD73-9F8ACF84E0C1}"
Expand Down Expand Up @@ -211,6 +210,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Natasha.CSharp.Extension.Co
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Natasha.CSharp.Extension.Ambiguity", "src\Natasha.CSharp\Extension\Natasha.CSharp.Extension.Ambiguity\Natasha.CSharp.Extension.Ambiguity.csproj", "{0D60DC94-C8A4-4CE7-9B3D-EB39FDA4EB48}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Natasha.CSharp.Extension.MethodCreator", "src\Natasha.CSharp\Extension\Natasha.CSharp.Extension.MethodCreator\Natasha.CSharp.Extension.MethodCreator.csproj", "{5A9A10B4-5790-4607-850B-A5A6C6C68737}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -381,6 +382,10 @@ Global
{0D60DC94-C8A4-4CE7-9B3D-EB39FDA4EB48}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0D60DC94-C8A4-4CE7-9B3D-EB39FDA4EB48}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0D60DC94-C8A4-4CE7-9B3D-EB39FDA4EB48}.Release|Any CPU.Build.0 = Release|Any CPU
{5A9A10B4-5790-4607-850B-A5A6C6C68737}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5A9A10B4-5790-4607-850B-A5A6C6C68737}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5A9A10B4-5790-4607-850B-A5A6C6C68737}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5A9A10B4-5790-4607-850B-A5A6C6C68737}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -454,6 +459,7 @@ Global
{1A79A124-5C6D-456E-8402-33A1FA68C566} = {57D0570C-7B6A-4795-960E-D37E9FFDA066}
{4C7306AB-D54A-44C9-B653-C1E96B4BC419} = {0CB3AF52-50F3-4728-BAC6-389F2E995111}
{0D60DC94-C8A4-4CE7-9B3D-EB39FDA4EB48} = {0CB3AF52-50F3-4728-BAC6-389F2E995111}
{5A9A10B4-5790-4607-850B-A5A6C6C68737} = {0CB3AF52-50F3-4728-BAC6-389F2E995111}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3004E730-B231-40FA-B75C-58D7DDE17679}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Text;

public static class StringExtension
{

}

Loading