Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Pyanikov committed Mar 20, 2023
1 parent 4df9251 commit 0814433
Show file tree
Hide file tree
Showing 164 changed files with 11,542 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
**/obj/
**/bin/
**/*.lock.json
**/*.TMP
**/*.DotSettings.user
**/*.csproj.user
*.suo
.vs/
*.user
_ReSharper.Caches/
.idea
Binary file added DevTeam.snk
Binary file not shown.
26 changes: 26 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<Project>

<PropertyGroup>
<LangVersion>11</LangVersion>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsPackable>false</IsPackable>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/DevTeam/Pure.DI.git</RepositoryUrl>
<Description>Pure DI for .NET without frameworks!</Description>
<Product>Pure DI</Product>
<Copyright>Copyright (C) 2023 Nikolay Pianikov</Copyright>
<AnalyzerRoslynVersion Condition="'$(AnalyzerRoslynVersion)'==''">4.4</AnalyzerRoslynVersion>
<AnalyzerRoslynPackageVersion Condition="'$(AnalyzerRoslynPackageVersion)'==''">4.4.0</AnalyzerRoslynPackageVersion>
<BaseIntermediateOutputPath>obj\roslyn$(AnalyzerRoslynVersion)</BaseIntermediateOutputPath>
<BaseOutputPath>bin\roslyn$(AnalyzerRoslynVersion)</BaseOutputPath>
</PropertyGroup>

<Target Name="Info" BeforeTargets="Build">
<Message Text="Roslyn Version/Package Version = $(AnalyzerRoslynVersion)($(AnalyzerRoslynPackageVersion))" Importance="high"/>
</Target>

</Project>

69 changes: 69 additions & 0 deletions Pure.DI.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pure.DI", "src\Pure.DI\Pure.DI.csproj", "{7C9E056B-CBA9-4548-9CDB-C5CE03C491B0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "solution", "solution", "{9B70157B-B6AC-4033-AD22-1DC3D7B3A2AD}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
global.json = global.json
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pure.DI.IntegrationTests", "tests\Pure.DI.IntegrationTests\Pure.DI.IntegrationTests.csproj", "{9EB0FB9E-487A-48D8-8B2C-03FBA81335B1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pure.DI.Tests", "tests\Pure.DI.Tests\Pure.DI.Tests.csproj", "{DAE1036B-6373-4CD4-A114-1A2EB36059F6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{8163CDD7-7018-4301-A984-803C3807A6A6}"
ProjectSection(SolutionItems) = preProject
src\Directory.Build.props = src\Directory.Build.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{9DF1D09E-863F-4800-9E28-954440EE1601}"
ProjectSection(SolutionItems) = preProject
tests\Directory.Build.props = tests\Directory.Build.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{2862E47E-F5EB-4346-A87B-E94C1A72A80C}"
ProjectSection(SolutionItems) = preProject
docs\icon.png = docs\icon.png
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pure.DI.UsageTests", "tests\Pure.DI.UsageTests\Pure.DI.UsageTests.csproj", "{C375B7B7-A505-4E91-A421-8944FD3F2B10}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pure.DI.Core", "src\Pure.DI.Core\Pure.DI.Core.csproj", "{53303CC4-789D-49D8-A0CC-9FE53C721B78}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7C9E056B-CBA9-4548-9CDB-C5CE03C491B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7C9E056B-CBA9-4548-9CDB-C5CE03C491B0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7C9E056B-CBA9-4548-9CDB-C5CE03C491B0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7C9E056B-CBA9-4548-9CDB-C5CE03C491B0}.Release|Any CPU.Build.0 = Release|Any CPU
{9EB0FB9E-487A-48D8-8B2C-03FBA81335B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9EB0FB9E-487A-48D8-8B2C-03FBA81335B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9EB0FB9E-487A-48D8-8B2C-03FBA81335B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9EB0FB9E-487A-48D8-8B2C-03FBA81335B1}.Release|Any CPU.Build.0 = Release|Any CPU
{DAE1036B-6373-4CD4-A114-1A2EB36059F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DAE1036B-6373-4CD4-A114-1A2EB36059F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DAE1036B-6373-4CD4-A114-1A2EB36059F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DAE1036B-6373-4CD4-A114-1A2EB36059F6}.Release|Any CPU.Build.0 = Release|Any CPU
{C375B7B7-A505-4E91-A421-8944FD3F2B10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C375B7B7-A505-4E91-A421-8944FD3F2B10}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C375B7B7-A505-4E91-A421-8944FD3F2B10}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C375B7B7-A505-4E91-A421-8944FD3F2B10}.Release|Any CPU.Build.0 = Release|Any CPU
{53303CC4-789D-49D8-A0CC-9FE53C721B78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{53303CC4-789D-49D8-A0CC-9FE53C721B78}.Debug|Any CPU.Build.0 = Debug|Any CPU
{53303CC4-789D-49D8-A0CC-9FE53C721B78}.Release|Any CPU.ActiveCfg = Release|Any CPU
{53303CC4-789D-49D8-A0CC-9FE53C721B78}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{7C9E056B-CBA9-4548-9CDB-C5CE03C491B0} = {8163CDD7-7018-4301-A984-803C3807A6A6}
{9EB0FB9E-487A-48D8-8B2C-03FBA81335B1} = {9DF1D09E-863F-4800-9E28-954440EE1601}
{DAE1036B-6373-4CD4-A114-1A2EB36059F6} = {9DF1D09E-863F-4800-9E28-954440EE1601}
{C375B7B7-A505-4E91-A421-8944FD3F2B10} = {9DF1D09E-863F-4800-9E28-954440EE1601}
{53303CC4-789D-49D8-A0CC-9FE53C721B78} = {8163CDD7-7018-4301-A984-803C3807A6A6}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 0814433

Please sign in to comment.