-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First major commit in support of #87
Migrated first 3 major projects over to .NET Core/Standard 2.0 - adjusted configuration handling (still some work left here) - adjusted logging setup (still some work left here) - added support for running as a Windows Service - cleaned up namespace naming conventions NOTE, unit tests have not yet been moved over.
- Loading branch information
Showing
83 changed files
with
5,708 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"cSpell.words": [ | ||
"asms", | ||
"assms", | ||
"authz", | ||
"csum", | ||
"dotnetfw", | ||
"ext", | ||
"rtasm" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- | ||
- References: | ||
- * https://github.com/dotnet/sdk/issues/2#issuecomment-238368991 | ||
--> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)/TugDSC.common.props" /> | ||
|
||
|
||
<PropertyGroup> | ||
<!-- Versioning - base is static, build is computed by CI --> | ||
<BuildNum Condition="$(BuildNum)==''">0</BuildNum> | ||
<CommonVersion>0.7.0.$(BuildNum)</CommonVersion> | ||
<AssemblyVersion>$(CommonVersion)</AssemblyVersion> | ||
<FileVersion>$(CommonVersion)</FileVersion> | ||
<Version>$(CommonVersion)-ea</Version> | ||
</PropertyGroup> | ||
|
||
|
||
<ItemGroup> | ||
<Compile Include="$(SharedSourceDir)/SharedAssemblyInfo.cs" /> | ||
<!-- | ||
<Compile Include="$(SharedSourceDir)/SharedAssemblyVersionInfo.cs" /> | ||
--> | ||
<Compile Include="$(SharedSourceDir)/SharedGlobalSuppressions.cs" /> | ||
</ItemGroup> | ||
|
||
<!-- | ||
- We disable the generation of these by MSBuild because we pull in common | ||
- manifest properties from shared source files which are pulled in above | ||
--> | ||
<PropertyGroup> | ||
<!-- These need to be defined in the project-specific build file --> | ||
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute> | ||
<GenerateAssemblyDescriptionAttribute>true</GenerateAssemblyDescriptionAttribute> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<!-- These are defined globally in a shared source file - we don't define these | ||
in build configuration properties because not all of them support that. --> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> | ||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<!-- These are computed dynamically --> | ||
<GenerateAssemblyVersionAttribute>true</GenerateAssemblyVersionAttribute> | ||
<GenerateAssemblyFileVersionAttribute>true</GenerateAssemblyFileVersionAttribute> | ||
<GenerateAssemblyInformationalVersionAttribute>true</GenerateAssemblyInformationalVersionAttribute> | ||
<GenerateAssemblyConfigurationAttribute>true</GenerateAssemblyConfigurationAttribute> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 15 | ||
VisualStudioVersion = 15.0.26124.0 | ||
MinimumVisualStudioVersion = 15.0.26124.0 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{BA29CE93-33EE-419B-A855-DA934573FA83}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TugDSC.Abstractions", "src\TugDSC.Abstractions\TugDSC.Abstractions.csproj", "{97DECA03-C0C3-4F41-A0FE-F51CA949D501}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TugDSC.Server.Abstractions", "src\TugDSC.Server.Abstractions\TugDSC.Server.Abstractions.csproj", "{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TugDSC.Server.WebAppHost", "src\TugDSC.Server.WebAppHost\TugDSC.Server.WebAppHost.csproj", "{77F0AAAE-3518-46A7-A0E2-E09A36630300}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Debug|x64 = Debug|x64 | ||
Debug|x86 = Debug|x86 | ||
Release|Any CPU = Release|Any CPU | ||
Release|x64 = Release|x64 | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Debug|x64.ActiveCfg = Debug|x64 | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Debug|x64.Build.0 = Debug|x64 | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Debug|x86.ActiveCfg = Debug|x86 | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Debug|x86.Build.0 = Debug|x86 | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Release|x64.ActiveCfg = Release|x64 | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Release|x64.Build.0 = Release|x64 | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Release|x86.ActiveCfg = Release|x86 | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501}.Release|x86.Build.0 = Release|x86 | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Debug|x64.ActiveCfg = Debug|x64 | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Debug|x64.Build.0 = Debug|x64 | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Debug|x86.ActiveCfg = Debug|x86 | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Debug|x86.Build.0 = Debug|x86 | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Release|x64.ActiveCfg = Release|x64 | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Release|x64.Build.0 = Release|x64 | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Release|x86.ActiveCfg = Release|x86 | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0}.Release|x86.Build.0 = Release|x86 | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Debug|x64.ActiveCfg = Debug|x64 | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Debug|x64.Build.0 = Debug|x64 | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Debug|x86.ActiveCfg = Debug|x86 | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Debug|x86.Build.0 = Debug|x86 | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Release|x64.ActiveCfg = Release|x64 | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Release|x64.Build.0 = Release|x64 | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Release|x86.ActiveCfg = Release|x86 | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300}.Release|x86.Build.0 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
{97DECA03-C0C3-4F41-A0FE-F51CA949D501} = {BA29CE93-33EE-419B-A855-DA934573FA83} | ||
{8BAD111C-0371-4F65-BAD7-1B88FADC84E0} = {BA29CE93-33EE-419B-A855-DA934573FA83} | ||
{77F0AAAE-3518-46A7-A0E2-E09A36630300} = {BA29CE93-33EE-419B-A855-DA934573FA83} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.