Commit c7ee5b2c c7ee5b2c73d30cc825be06483ee1b6071c176907 by Gabor Felegyhazi

Kesz

1 parent e47e568b
Showing 1000 changed files with 1148 additions and 98 deletions

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Mark that this target file has been loaded. -->
<IsPaketRestoreTargetsFileLoaded>true</IsPaketRestoreTargetsFileLoaded>
<PaketToolsPath>$(MSBuildThisFileDirectory)</PaketToolsPath>
<MonoPath Condition="'$(MonoPath)' == '' And Exists('/Library/Frameworks/Mono.framework/Commands/mono')">/Library/Frameworks/Mono.framework/Commands/mono</MonoPath>
<MonoPath Condition="'$(MonoPath)' == ''">mono</MonoPath>
<!-- Paket command -->
<PaketExePath Condition=" '$(PaketExePath)' == '' AND Exists('$(PaketRootPath)paket.exe')">$(PaketRootPath)paket.exe</PaketExePath>
<PaketExePath Condition=" '$(PaketExePath)' == '' ">$(PaketToolsPath)paket.exe</PaketExePath>
<PaketCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketExePath)"</PaketCommand>
<PaketCommand Condition=" '$(OS)' != 'Windows_NT' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)"</PaketCommand>
<PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' AND Exists('$(PaketRootPath)paket.bootstrapper.exe')">$(PaketRootPath)paket.bootstrapper.exe</PaketBootStrapperExePath>
<PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' ">$(PaketToolsPath)paket.bootstrapper.exe</PaketBootStrapperExePath>
<PaketBootStrapperCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>
<PaketBootStrapperCommand Condition=" '$(OS)' != 'Windows_NT' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>
</PropertyGroup>
<Target Name="PaketRestore" BeforeTargets="_GenerateDotnetCliToolReferenceSpecs;_GenerateProjectRestoreGraphPerFramework;_GenerateRestoreGraphWalkPerFramework;CollectPackageReferences" >
<Exec Command='$(PaketBootStrapperCommand) ' Condition="Exists('$(PaketBootStrapperExePath)') AND !(Exists('$(PaketExePath)'))" ContinueOnError="false" />
<Exec Command='$(PaketCommand) restore --project "$(MSBuildProjectFullPath)" --target-framework $(TargetFramework)' ContinueOnError="false" />
<PropertyGroup>
<PaketReferencesFilePath>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references</PaketReferencesFilePath>
</PropertyGroup>
<ReadLinesFromFile File="$(PaketReferencesFilePath)" >
<Output TaskParameter="Lines" ItemName="PaketReferencesFileLines"/>
</ReadLinesFromFile>
<ItemGroup Condition=" '@(PaketReferencesFileLines)' != '' " >
<PaketReferencesFileLinesInfo Include="@(PaketReferencesFileLines)" >
<PackageName>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0])</PackageName>
<PackageVersion>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1])</PackageVersion>
</PaketReferencesFileLinesInfo>
<PackageReference Include="%(PaketReferencesFileLinesInfo.PackageName)">
<Version>%(PaketReferencesFileLinesInfo.PackageVersion)</Version>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<PaketCliToolFilePath>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).paket.clitools</PaketCliToolFilePath>
</PropertyGroup>
<ReadLinesFromFile File="$(PaketCliToolFilePath)" >
<Output TaskParameter="Lines" ItemName="PaketCliToolFileLines"/>
</ReadLinesFromFile>
<ItemGroup Condition=" '@(PaketCliToolFileLines)' != '' " >
<PaketCliToolFileLinesInfo Include="@(PaketCliToolFileLines)" >
<PackageName>$([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[0])</PackageName>
<PackageVersion>$([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[1])</PackageVersion>
</PaketCliToolFileLinesInfo>
<DotNetCliToolReference Include="%(PaketCliToolFileLinesInfo.PackageName)">
<Version>%(PaketCliToolFileLinesInfo.PackageVersion)</Version>
</DotNetCliToolReference>
</ItemGroup>
<PropertyGroup>
<RestoreConfigFile>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).NuGet.Config</RestoreConfigFile>
</PropertyGroup>
</Target>
<Target Name="PaketDisableDirectPack" AfterTargets="_IntermediatePack" BeforeTargets="GenerateNuspec" >
<PropertyGroup>
<ContinuePackingAfterGeneratingNuspec>false</ContinuePackingAfterGeneratingNuspec>
</PropertyGroup>
</Target>
<Target Name="PaketOverrideNuspec" AfterTargets="GenerateNuspec" >
<PropertyGroup>
<PaketReferencesFilePath>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references</PaketReferencesFilePath>
<ContinuePackingAfterGeneratingNuspec>true</ContinuePackingAfterGeneratingNuspec>
</PropertyGroup>
<ItemGroup>
<_NuspecFiles Include="$(BaseIntermediateOutputPath)*.nuspec"/>
</ItemGroup>
<Exec Command='$(PaketCommand) fix-nuspec file "@(_NuspecFiles)" references-file "$(PaketReferencesFilePath)" ' />
<ConvertToAbsolutePath Condition="@(_NuspecFiles) != ''" Paths="@(_NuspecFiles)">
<Output TaskParameter="AbsolutePaths" PropertyName="NuspecFileAbsolutePath" />
</ConvertToAbsolutePath>
<!-- Call Pack -->
<PackTask PackItem="$(PackProjectInputFile)"
PackageFiles="@(_PackageFiles)"
PackageFilesToExclude="@(_PackageFilesToExclude)"
PackageVersion="$(PackageVersion)"
PackageId="$(PackageId)"
Title="$(Title)"
Authors="$(Authors)"
Description="$(Description)"
Copyright="$(Copyright)"
RequireLicenseAcceptance="$(PackageRequireLicenseAcceptance)"
LicenseUrl="$(PackageLicenseUrl)"
ProjectUrl="$(PackageProjectUrl)"
IconUrl="$(PackageIconUrl)"
ReleaseNotes="$(PackageReleaseNotes)"
Tags="$(PackageTags)"
TargetPathsToAssemblies="@(_TargetPathsToAssemblies->'%(FinalOutputPath)')"
TargetPathsToSymbols="@(_TargetPathsToSymbols)"
TargetFrameworks="@(_TargetFrameworks)"
AssemblyName="$(AssemblyName)"
PackageOutputPath="$(PackageOutputAbsolutePath)"
IncludeSymbols="$(IncludeSymbols)"
IncludeSource="$(IncludeSource)"
PackageTypes="$(PackageType)"
IsTool="$(IsTool)"
RepositoryUrl="$(RepositoryUrl)"
RepositoryType="$(RepositoryType)"
SourceFiles="@(_SourceFiles->Distinct())"
NoPackageAnalysis="$(NoPackageAnalysis)"
MinClientVersion="$(MinClientVersion)"
Serviceable="$(Serviceable)"
AssemblyReferences="@(_References)"
ContinuePackingAfterGeneratingNuspec="$(ContinuePackingAfterGeneratingNuspec)"
NuspecOutputPath="$(BaseIntermediateOutputPath)"
IncludeBuildOutput="$(IncludeBuildOutput)"
BuildOutputFolder="$(BuildOutputTargetFolder)"
ContentTargetFolders="$(ContentTargetFolders)"
RestoreOutputPath="$(RestoreOutputAbsolutePath)"
NuspecFile="$(NuspecFileAbsolutePath)"
NuspecBasePath="$(NuspecBasePath)"
NuspecProperties="$(NuspecProperties)"/>
</Target>
</Project>
\ No newline at end of file
No preview for this file type
No preview for this file type
No preview for this file type
namespace CCE.Hosting.Netcore
{
using CCE.Configuration;
using Nancy;
using Nancy.TinyIoc;
using Nancy.Bootstrapper;
using CCE.Data.Configuration;
using CCE.Data.Sql;
using CCE.BLL.Configuration;
public class Bootstrapper : DefaultNancyBootstrapper
{
protected override void ApplicationStartup(TinyIoCContainer container, IPipelines pipelines)
{
var env = new DefaultCCEEnvironment(System.Environment.GetEnvironmentVariables());
env.AddValue<int>("alma",1);
container.Register<ICCEEnvironment, DefaultCCEEnvironment>(env);
container.Register<ICCEContext, DefaultCCEContext>().AsSingleton();
container.Register<ICCEDataContext, MsSqlCCESqlDataContext>().AsSingleton();
container.Register<ICCEBusinessContext, DefaultCCEBusinessContext>().AsSingleton();
}
}
}
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CCE\CCE.csproj" />
</ItemGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
</Project>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ActiveDebugProfile>CCE.Hosting.Netcore</ActiveDebugProfile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
\ No newline at end of file
namespace CCE.Hosting.Netcore
{
using CCE.Configuration;
using Nancy;
public class HomeModule : NancyModule
{
public HomeModule(ICCEBusinessContext businessContext)
{
Get(
"/",
parameters =>
Response.AsJson(businessContext));
Get("/Environment/{key}", x => {
string value;
businessContext.CCEContext.Environment.TryGetValue(x.key, out value);
return Response.AsJson(value);
});
}
}
}
namespace CCE.Hosting.Netcore
{
using System.IO;
using Microsoft.AspNetCore.Hosting;
/// <summary>
/// Netcore hosting runner
/// </summary>
public class Program
{
/// <summary>
/// Mains the specified arguments.
/// </summary>
/// <param name="args">The arguments.</param>
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel().UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration().UseStartup<Startup>()
.Build();
host.Run();
}
}
}
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:57600/",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"CCE.Hosting.Netcore": {
"commandName": "Project"
}
}
}
\ No newline at end of file
namespace CCE.Hosting.Netcore
{
using System.IO;
using Nancy;
/// <summary>
/// Root path provider for basic root folder path of web contents
/// </summary>
/// <seealso cref="Nancy.IRootPathProvider" />
internal class ServiceRootPathProvider : IRootPathProvider
{
/// <summary>
/// The provider of the filesystem path
/// </summary>
private readonly IRootPathProvider provider = new DefaultRootPathProvider();
/// <summary>
/// Returns the root folder path of the current application.
/// </summary>
/// <returns>
/// A <see cref="T:System.String" /> containing the path of the root folder.
/// </returns>
public string GetRootPath()
{
return Path.Combine(this.provider.GetRootPath());
}
}
}
\ No newline at end of file
namespace CCE.Hosting.Netcore
{
using Microsoft.AspNetCore.Builder;
using Nancy.Owin;
/// <summary>
/// Netcore hosting Owin startup settigs
/// </summary>
public class Startup
{
/// <summary>
/// Configures the specified application.
/// </summary>
/// <param name="app">The application.</param>
public void Configure(IApplicationBuilder app)
{
app.UseOwin(x => x.UseNancy());
}
}
}
This diff could not be displayed because it is too large.
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\felegy\\.nuget\\packages"
]
}
}
\ No newline at end of file
{
"runtimeOptions": {
"framework": {
"name": "Microsoft.NETCore.App",
"version": "1.1.2"
},
"configProperties": {
"System.GC.Server": true
}
}
}
\ No newline at end of file
This diff could not be displayed because it is too large.
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\felegy\\.nuget\\packages"
]
}
}
\ No newline at end of file
{
"runtimeOptions": {
"framework": {
"name": "Microsoft.NETCore.App",
"version": "1.1.2"
},
"configProperties": {
"System.GC.Server": true
}
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
</packageSources>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\felegy\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.2.0</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.diasymreader.native\1.4.1\build\Microsoft.DiaSymReader.Native.props" Condition="Exists('$(NuGetPackageRoot)microsoft.diasymreader.native\1.4.1\build\Microsoft.DiaSymReader.Native.props')" />
</ImportGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>
\ No newline at end of file
Microsoft.NETCore.Platforms,1.1,Transitive,Main
Libuv,1.9.2,Transitive,Main
Microsoft.NETCore.Targets,1.1,Transitive,Main
runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.native.System,4.3,Transitive,Main
runtime.native.System.IO.Compression,4.3,Transitive,Main
runtime.native.System.Net.Http,4.3,Transitive,Main
runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple,4.3,Transitive,Main
runtime.native.System.Security.Cryptography.Apple,4.3,Transitive,Main
runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
runtime.native.System.Security.Cryptography.OpenSsl,4.3.1,Transitive,Main
System.Runtime,4.3,Transitive,Main
Microsoft.Win32.Primitives,4.3,Transitive,Main
System.AppContext,4.3,Transitive,Main
System.Collections,4.3,Transitive,Main
System.ComponentModel,4.3,Transitive,Main
System.Diagnostics.Contracts,4.3,Transitive,Main
System.Diagnostics.Debug,4.3,Transitive,Main
System.Diagnostics.Tools,4.3,Transitive,Main
System.Diagnostics.Tracing,4.3,Transitive,Main
System.Globalization,4.3,Transitive,Main
System.Globalization.Calendars,4.3,Transitive,Main
System.IO.FileSystem.Primitives,4.3,Transitive,Main
System.Reflection.Primitives,4.3,Transitive,Main
System.Runtime.CompilerServices.Unsafe,4.3,Transitive,Main
System.Runtime.Extensions,4.3,Transitive,Main
System.Runtime.Handles,4.3,Transitive,Main
System.Net.Primitives,4.3,Transitive,Main
System.Security.Principal,4.3,Transitive,Main
System.Text.Encoding,4.3,Transitive,Main
System.Text.Encoding.Extensions,4.3,Transitive,Main
System.Threading.Tasks,4.3,Transitive,Main
System.IO,4.3,Transitive,Main
System.Console,4.3,Transitive,Main
System.IO.FileSystem,4.3,Transitive,Main
System.Net.Sockets,4.3,Transitive,Main
System.Reflection,4.3,Transitive,Main
System.Reflection.Emit.ILGeneration,4.3,Transitive,Main
System.Reflection.Emit,4.3,Transitive,Main
System.Reflection.Emit.Lightweight,4.3,Transitive,Main
System.Reflection.Extensions,4.3,Transitive,Main
System.Reflection.TypeExtensions,4.3,Transitive,Main
System.Resources.ResourceManager,4.3,Transitive,Main
System.ComponentModel.Primitives,4.3,Transitive,Main
System.Linq,4.3,Transitive,Main
System.Net.WebSockets,4.3,Transitive,Main
System.Numerics.Vectors,4.3,Transitive,Main
System.Runtime.InteropServices,4.3,Transitive,Main
System.Globalization.Extensions,4.3,Transitive,Main
System.Runtime.Loader,4.3,Transitive,Main
System.Runtime.Numerics,4.3,Transitive,Main
System.Runtime.Serialization.Primitives,4.3,Transitive,Main
System.Runtime.Serialization.Formatters,4.3,Transitive,Main
System.Security.Claims,4.3,Transitive,Main
System.Threading,4.3,Transitive,Main
System.Buffers,4.3,Transitive,Main
System.Collections.Concurrent,4.3,Transitive,Main
System.Collections.Immutable,1.3.1,Transitive,Main
System.Collections.NonGeneric,4.3,Transitive,Main
System.Collections.Specialized,4.3,Transitive,Main
System.ComponentModel.TypeConverter,4.3,Transitive,Main
System.Diagnostics.DiagnosticSource,4.4,Transitive,Main
System.IO.Compression,4.3,Transitive,Main
System.IO.Compression.ZipFile,4.3,Transitive,Main
System.ObjectModel,4.3,Transitive,Main
System.Linq.Expressions,4.3,Transitive,Main
System.Dynamic.Runtime,4.3,Transitive,Main
Microsoft.CSharp,4.3,Transitive,Main
System.Reflection.Metadata,1.4.2,Transitive,Main
System.Diagnostics.StackTrace,4.3,Transitive,Main
System.Runtime.InteropServices.RuntimeInformation,4.3,Transitive,Main
Microsoft.DotNet.PlatformAbstractions,1.1.2,Transitive,Main
System.Security.Cryptography.Primitives,4.3,Transitive,Main
System.Security.Cryptography.Encoding,4.3,Transitive,Main
System.Security.Cryptography.Algorithms,4.3,Transitive,Main
System.Security.Cryptography.Cng,4.3,Transitive,Main
System.Security.Cryptography.Csp,4.3,Transitive,Main
System.Security.Cryptography.OpenSsl,4.3,Transitive,Main
System.Security.Cryptography.X509Certificates,4.3,Transitive,Main
System.Net.Http,4.3.2,Transitive,Main
System.Security.Principal.Windows,4.3,Transitive,Main
System.Net.NameResolution,4.3,Transitive,Main
System.Text.Encodings.Web,4.3.1,Transitive,Main
System.Text.RegularExpressions,4.3,Transitive,Main
System.Data.Common,4.3,Transitive,Main
System.Threading.Overlapped,4.3,Transitive,Main
System.Threading.Tasks.Extensions,4.3,Transitive,Main
System.Threading.Thread,4.3,Transitive,Main
System.IO.FileSystem.Watcher,4.3,Transitive,Main
System.Threading.ThreadPool,4.3,Transitive,Main
System.Threading.Timer,4.3,Transitive,Main
System.Xml.ReaderWriter,4.3,Transitive,Main
System.Xml.XDocument,4.3,Transitive,Main
NETStandard.Library,1.6.1,Transitive,Main
Microsoft.AspNetCore.Diagnostics.Abstractions,1.1.2,Transitive,Main
Microsoft.Extensions.DependencyInjection.Abstractions,1.1.1,Transitive,Main
Microsoft.Extensions.DependencyInjection,1.1.1,Transitive,Main
Microsoft.Extensions.FileSystemGlobbing,1.1.1,Transitive,Main
Microsoft.Extensions.Logging.Abstractions,1.1.2,Transitive,Main
Microsoft.Extensions.Logging,1.1.2,Transitive,Main
Microsoft.Extensions.ObjectPool,1.1.1,Transitive,Main
Microsoft.Extensions.PlatformAbstractions,1.1,Transitive,Main
Microsoft.Extensions.Primitives,1.1.1,Transitive,Main
Microsoft.AspNetCore.Http.Features,1.1.2,Transitive,Main
Microsoft.AspNetCore.Http.Abstractions,1.1.2,Transitive,Main
Microsoft.AspNetCore.Routing.Abstractions,1.1.2,Transitive,Main
Microsoft.Extensions.Configuration.Abstractions,1.1.2,Transitive,Main
Microsoft.AspNetCore.Hosting.Server.Abstractions,1.1.2,Transitive,Main
Microsoft.Extensions.Configuration,1.1.2,Transitive,Main
Microsoft.Extensions.Configuration.Binder,1.1.2,Transitive,Main
Microsoft.Extensions.Configuration.EnvironmentVariables,1.1.2,Transitive,Main
Microsoft.Extensions.FileProviders.Abstractions,1.1.1,Transitive,Main
Microsoft.AspNetCore.Hosting.Abstractions,1.1.2,Transitive,Main
Microsoft.Extensions.FileProviders.Physical,1.1.1,Transitive,Main
Microsoft.Extensions.Configuration.FileExtensions,1.1.2,Transitive,Main
Microsoft.Extensions.Logging.Console,1.1.2,Transitive,Main
Microsoft.Extensions.Options,1.1.2,Transitive,Main
Microsoft.Extensions.Options.ConfigurationExtensions,1.1.2,Transitive,Main
Microsoft.Net.Http.Headers,1.1.2,Transitive,Main
Microsoft.AspNetCore.Http.Extensions,1.1.2,Transitive,Main
Microsoft.AspNetCore.HttpOverrides,1.1.2,Transitive,Main
Microsoft.AspNetCore.Routing,1.1.2,Transitive,Main
Microsoft.AspNetCore.WebUtilities,1.1.2,Transitive,Main
Microsoft.AspNetCore.Diagnostics,1.1.2,Transitive,Main
Microsoft.AspNetCore.Http,1.1.2,Transitive,Main
Microsoft.AspNetCore.Hosting,1.1.2,Transitive,Main
Microsoft.AspNetCore.Owin,1.1.2,Direct,Main
Microsoft.AspNetCore.Server.IISIntegration,1.1.2,Transitive,Main
Microsoft.AspNetCore.Server.Kestrel,1.1.2,Transitive,Main
System.Xml.XmlDocument,4.3,Transitive,Main
Newtonsoft.Json,10.0.3,Transitive,Main
Microsoft.Extensions.Configuration.Json,1.1.2,Transitive,Main
Microsoft.AspNetCore,1.1.2,Direct,Main
Microsoft.Extensions.DependencyModel,1.1.2,Transitive,Main
System.Xml.XmlSerializer,4.3,Transitive,Main
Nancy,2.0.0-clinteastwood,Direct,Main
\ No newline at end of file
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("CCE.Hosting.Netcore")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("CCE.Hosting.Netcore")]
[assembly: System.Reflection.AssemblyTitleAttribute("CCE.Hosting.Netcore")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Debug\netcoreapp1.1\CCE.Hosting.Netcore.deps.json
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Debug\netcoreapp1.1\CCE.Hosting.Netcore.runtimeconfig.json
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Debug\netcoreapp1.1\CCE.Hosting.Netcore.runtimeconfig.dev.json
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Debug\netcoreapp1.1\CCE.Hosting.Netcore.dll
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Debug\netcoreapp1.1\CCE.Hosting.Netcore.pdb
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Debug\netcoreapp1.1\CCE.dll
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Debug\netcoreapp1.1\CCE.pdb
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\Debug\netcoreapp1.1\CCE.Hosting.Netcore.AssemblyInfo.cs
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\Debug\netcoreapp1.1\CCE.Hosting.Netcore.dll
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\Debug\netcoreapp1.1\CCE.Hosting.Netcore.pdb
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\Debug\netcoreapp1.1\CCE.Hosting.Netcore.csprojResolveAssemblyReference.cache
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("CCE.Hosting.Netcore")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("CCE.Hosting.Netcore")]
[assembly: System.Reflection.AssemblyTitleAttribute("CCE.Hosting.Netcore")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Release\netcoreapp1.1\CCE.Hosting.Netcore.deps.json
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Release\netcoreapp1.1\CCE.Hosting.Netcore.runtimeconfig.json
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Release\netcoreapp1.1\CCE.Hosting.Netcore.runtimeconfig.dev.json
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Release\netcoreapp1.1\CCE.Hosting.Netcore.dll
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Release\netcoreapp1.1\CCE.Hosting.Netcore.pdb
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Release\netcoreapp1.1\CCE.dll
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\bin\Release\netcoreapp1.1\CCE.pdb
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\Release\netcoreapp1.1\CCE.Hosting.Netcore.csprojResolveAssemblyReference.cache
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\Release\netcoreapp1.1\CCE.Hosting.Netcore.AssemblyInfo.cs
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\Release\netcoreapp1.1\CCE.Hosting.Netcore.dll
C:\Users\felegy\ContextConfigEnv\CCE.Hosting.Netcore\obj\Release\netcoreapp1.1\CCE.Hosting.Netcore.pdb
This diff could not be displayed because it is too large.
Microsoft.AspNetCore
Microsoft.AspNetCore.Owin
Nancy
\ No newline at end of file
namespace .
namespace CCE.BLL.Configuration
{
public class DefaultCCEBusinessContext : ICCEBusinessContext
{
}
using CCE.Configuration;
using CCE.Data.Configuration;
public class DefaultCCEBusinessContext : ICCEBusinessContext
{
/// <summary>
/// Initializes a new instance of the <see cref="DefaultCCEBusinessContext" /> class.
/// </summary>
/// <param name="cceContext">The cce context.</param>
/// <param name="dataContext">The data context.</param>
/// <param name="environment">The environment.</param>
public DefaultCCEBusinessContext(ICCEContext cceContext, ICCEDataContext dataContext)
{
CCEContext = cceContext;
CCEDataContext = dataContext;
}
/// <summary>
/// Gets the cce context.
/// </summary>
/// <value>
/// The cce context.
/// </value>
public ICCEContext CCEContext { get; }
/// <summary>
/// Gets the cce data context.
/// </summary>
/// <value>
/// The cce data context.
/// </value>
public ICCEDataContext CCEDataContext { get; }
}
}
\ No newline at end of file
......
namespace .
namespace CCE.Configuration
{
public interface ICCEBusinessContext : ICCEContext
{
}
using CCE.Data.Configuration;
public interface ICCEBusinessContext
{
/// <summary>
/// Gets the cce context.
/// </summary>
/// <value>
/// The cce context.
/// </value>
ICCEContext CCEContext { get; }
/// <summary>
/// Gets the cce data context.
/// </summary>
/// <value>
/// The cce data context.
/// </value>
ICCEDataContext CCEDataContext { get; }
}
}
\ No newline at end of file
......
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.6</TargetFramework>
<TargetFrameworks>netstandard1.6;net452</TargetFrameworks>
</PropertyGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
</Project>
\ No newline at end of file
......
namespace .
namespace CCE.Configuration
{
public class DefaultCCEContext : ICCEContext
{
private readonly ICCEEnvironment _environment
using CCE.Configuration.Extensions;
public DefaultCCEContext(ICCEEnvironment environment)
{
_environment = environment;
}
}
public class DefaultCCEContext : ICCEContext
{
/// <summary>
/// Gets the environment.
/// </summary>
/// <value>
/// The environment.
/// </value>
public ICCEEnvironment Environment { get; }
public const string ALMA_OPCIO = "alma";
public string AlmaOpcio
{
get
{
return this.Environment.GetValueOrDefault<string>("ALMA_OPCIO", ALMA_OPCIO);
}
}
/// <summary>
/// Initializes a new instance of the <see cref="DefaultCCEContext" /> class.
/// </summary>
/// <param name="environment">The environment.</param>
public DefaultCCEContext(ICCEEnvironment environment)
{
this.Environment = environment;
}
}
}
\ No newline at end of file
......
namespace CCE.Configuration
{
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
/// <summary>
/// Default implementation of the <see cref="ICCEEnvironment"/> interface.
/// </summary>
public class DefaultCCEEnvironment : ICCEEnvironment
{
private readonly IDictionary<string, object> _values = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
private readonly IDictionary<string, object> _baseSettings;
private readonly bool _hasBaseSettings = false;
public DefaultCCEEnvironment(IDictionary baseSettings)
{
_baseSettings = new Dictionary<string, object>();
foreach( var key in baseSettings.Keys)
{
_baseSettings.Add(key.ToString(), baseSettings[key]);
_hasBaseSettings = true;
}
}
public DefaultCCEEnvironment(IDictionary<string, object> baseSettings)
{
_baseSettings = baseSettings;
_hasBaseSettings = _baseSettings.Count > 0;
}
public DefaultCCEEnvironment()
{
_baseSettings = null;
}
/// <summary>
/// Returns an enumerator that iterates through the environment.
/// </summary>
/// <returns>A <see cref="Dictionary{TKey,TValue}.Enumerator"/> that can be used to iterate through the environment.</returns>
public IEnumerator<KeyValuePair<string, object>> GetEnumerator()
{
return _values.GetEnumerator();
}
/// <summary>
/// Returns an enumerator that iterates through the environment.
/// </summary>
/// <returns> An <see cref="IEnumerator"/> object that can be used to iterate through the environment.</returns>
IEnumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
/// <summary>
/// Gets the number of elements in the environment.
/// </summary>
/// <returns>The number of elements in the environment.</returns>
public int Count
{
get { return _values.Count; }
}
/// <summary>
/// Determines whether the environment contains an element that has the specified key.
/// </summary>
/// <returns><see langword="true"/> if the environment contains an element that has the specified key; otherwise, <see langword="false"/>.
/// </returns>
/// <param name="key">The key to retrieve.</param>
public bool ContainsKey(string key)
{
return _values.ContainsKey(key);
}
/// <summary>
/// Gets the value that is associated with the specified key.
/// </summary>
/// <returns><see langword="true"/> if the environment contains an element that has the specified key; otherwise, <see langword="false"/>.</returns>
/// <param name="key">The key to locate.</param>
/// <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value"/> parameter. This parameter is passed uninitialized.</param>
bool IReadOnlyDictionary<string, object>.TryGetValue(string key, out object value)
{
return this._values.TryGetValue(key, out value);
}
/// <summary>
/// Gets the element that has the specified key in the environment.
/// </summary>
/// <returns>The element that has the specified key in the environment.</returns>
/// <param name="key">The key to locate.</param>
object IReadOnlyDictionary<string, object>.this[string key]
{
get { return _values[key]; }
}
/// <summary>
/// Gets an enumerable collection that contains the keys in the environment.
/// </summary>
/// <returns>An enumerable collection that contains the keys in the environment.</returns>
public IEnumerable<string> Keys
{
get { return _values.Keys; }
}
/// <summary>
/// Gets an enumerable collection that contains the values in the environment.
/// </summary>
/// <returns>An enumerable collection that contains the values in the environment.</returns>
public IEnumerable<object> Values
{
get { return _values.Values; }
}
/// <summary>
/// Adds a <paramref name="value"/>, using a provided <paramref name="key"/>, to the environment.
/// </summary>
/// <typeparam name="T">The <see cref="Type"/> of the value to add.</typeparam>
/// <param name="key">The key to store the value as.</param>
/// <param name="value">The value to store in the environment.</param>
public ICCEEnvironment AddValue<T>(string key, T value)
{
_values.Add(key, value);
return this;
}
/// <summary>
/// Gets the value that is associated with the specified key.
/// </summary>
/// <typeparam name="T">The <see cref="Type"/> of the value to retrieve.</typeparam>
/// <param name="key">The key to get the value for.</param>
/// <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.</param>
/// <returns><see langword="true" /> if the value could be retrieved, otherwise <see langword="false" />.</returns>
public virtual bool TryGetValue<T>(string key, out T value)
{
object objectValue;
if (_values.TryGetValue(key, out objectValue))
{
value = (T)objectValue;
return true;
}
if (!_hasBaseSettings || !_baseSettings.ContainsKey(key))
{
value = default(T);
return false;
}
object objValue;
_baseSettings.TryGetValue(key, out objValue);
try
{
var converter = TypeDescriptor.GetConverter(typeof(T));
if (converter != null)
{
value = (T)(objValue);
this.AddValue(key, value);
return true;
}
value = default(T);
return false;
}
catch (NotSupportedException)
{
value = default(T);
return false;
}
}
}
}
namespace CCE.Configuration.Extensions
{
/// <summary>
///
/// </summary>
public static class EnvironmentExtensions
{
/// <summary>
/// Gets the value or default.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="environment">The environment.</param>
/// <param name="key">The key.</param>
/// <param name="defaultValue">The default value.</param>
/// <returns></returns>
public static T GetValueOrDefault<T>(this ICCEEnvironment environment, string key, T defaultValue)
{
T res;
if (environment.TryGetValue(key, out res))
{
return res;
}
environment.AddValue(key, defaultValue);
return defaultValue;
}
}
}
namespace .
namespace CCE.Configuration
{
public interface ICCEContext
{
public interface ICCEContext
{
ICCEEnvironment Environment {get;}
}
string AlmaOpcio {get;}
/// <summary>
/// Gets the environment.
/// </summary>
/// <value>
/// The environment.
/// </value>
ICCEEnvironment Environment { get; }
}
}
\ No newline at end of file
......
namespace .
namespace CCE.Configuration
{
using System;
using System.Collections.Generic;
using System;
using System.Collections.Generic;
/// <summary>
/// Defines the functionality of a Nancy environment.
/// </summary>
public interface ICCEEnvironment : IReadOnlyDictionary<string, object>, IHideObjectMembers
{
/// <summary>
/// Adds a <paramref name="value"/>, using a provided <paramref name="key"/>, to the environment.
/// </summary>
/// <typeparam name="T">The <see cref="Type"/> of the value to add.</typeparam>
/// <param name="key">The key to store the value as.</param>
/// <param name="value">The value to store in the environment.</param>
void AddValue<T>(string key, T value);
/// <summary>
/// Defines the functionality of a Nancy environment.
/// </summary>
public interface ICCEEnvironment : IReadOnlyDictionary<string, object>, IHideObjectMembers
{
/// <summary>
/// Adds a <paramref name="value"/>, using a provided <paramref name="key"/>, to the environment.
/// </summary>
/// <typeparam name="T">The <see cref="Type"/> of the value to add.</typeparam>
/// <param name="key">The key to store the value as.</param>
/// <param name="value">The value to store in the environment.</param>
ICCEEnvironment AddValue<T>(string key, T value);
/// <summary>
/// Gets the value that is associated with the specified key.
/// </summary>
/// <typeparam name="T">The <see cref="Type"/> of the value to retrieve.</typeparam>
/// <param name="key">The key to get the value for.</param>
/// <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.</param>
/// <returns><see langword="true" /> if the value could be retrieved, otherwise <see langword="false" />.</returns>
bool TryGetValue<T>(string key, out T value);
}
/// <summary>
/// Gets the value that is associated with the specified key.
/// </summary>
/// <typeparam name="T">The <see cref="Type"/> of the value to retrieve.</typeparam>
/// <param name="key">The key to get the value for.</param>
/// <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.</param>
/// <returns><see langword="true" /> if the value could be retrieved, otherwise <see langword="false" />.</returns>
bool TryGetValue<T>(string key, out T value);
}
}
\ No newline at end of file
......
namespace .
using CCE.Configuration;
namespace CCE.Data.Configuration
{
public abstract class DefaultCCEDataContextBase : ICCEDataContext
{
}
public abstract class DefaultCCEDataContextBase : ICCEDataContext
{
/// <summary>
/// Initializes a new instance of the <see cref="DefaultCCEDataContextBase" /> class.
/// </summary>
/// <param name="context">The context.</param>
/// <param name="environment">The environment.</param>
public DefaultCCEDataContextBase(ICCEContext context)
{
CCEContext = context;
}
/// <summary>
/// Gets the cce context.
/// </summary>
/// <value>
/// The cce context.
/// </value>
public ICCEContext CCEContext { get; }
}
}
\ No newline at end of file
......
namespace .
namespace CCE.Data.Configuration
{
public interface ICCEDataContext : ICCEContext
{
}
using CCE.Configuration;
public interface ICCEDataContext
{
/// <summary>
/// Gets the ccce context.
/// </summary>
/// <value>
/// The ccce context.
/// </value>
ICCEContext CCEContext { get; }
}
}
\ No newline at end of file
......
namespace .
namespace CCE.Data.Sql
{
using CCE.Data.Configuration;
public interface ICCESqlDataContext : ICCEDataContext
{
......
namespace .
namespace CCE.Data.Sql
{
public class MsSqlCCESqlDataContext : DefaultCCEDataContextBase, ICCESqlDataContext
{
}
using CCE.Configuration;
using CCE.Data.Configuration;
public class MsSqlCCESqlDataContext : DefaultCCEDataContextBase, ICCESqlDataContext
{
/// <summary>
/// Initializes a new instance of the <see cref="MsSqlCCESqlDataContext" /> class.
/// </summary>
/// <param name="context">The context.</param>
/// <param name="environment">The environment.</param>
public MsSqlCCESqlDataContext(ICCEContext context) : base(context)
{
}
}
}
\ No newline at end of file
......
namespace CCE
{
using System;
using System.ComponentModel;
using System;
using System.ComponentModel;
/// <summary>
/// Helper interface used to hide the base <see cref="object"/> members from the fluent API to make it much cleaner
/// in Visual Studio intellisense.
/// </summary>
/// <remarks>Created by Daniel Cazzulino http://www.clariusconsulting.net/blogs/kzu/archive/2008/03/10/58301.aspx</remarks>
[EditorBrowsable(EditorBrowsableState.Never)]
public interface IHideObjectMembers
{
/// <summary>
/// Hides the <see cref="Equals"/> method.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
bool Equals(object obj);
/// <summary>
/// Helper interface used to hide the base <see cref="object"/> members from the fluent API to make it much cleaner
/// in Visual Studio intellisense.
/// </summary>
/// <remarks>Created by Daniel Cazzulino http://www.clariusconsulting.net/blogs/kzu/archive/2008/03/10/58301.aspx</remarks>
[EditorBrowsable(EditorBrowsableState.Never)]
public interface IHideObjectMembers
{
/// <summary>
/// Hides the <see cref="Equals"/> method.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
bool Equals(object obj);
/// <summary>
/// Hides the <see cref="GetHashCode"/> method.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
int GetHashCode();
/// <summary>
/// Hides the <see cref="GetHashCode"/> method.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
int GetHashCode();
/// <summary>
/// Hides the <see cref="GetType"/> method.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
Type GetType();
/// <summary>
/// Hides the <see cref="GetType"/> method.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
Type GetType();
/// <summary>
/// Hides the <see cref="ToString"/> method.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
string ToString();
}
/// <summary>
/// Hides the <see cref="ToString"/> method.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
string ToString();
}
}
\ No newline at end of file
......
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
</packageSources>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\Users\felegy\ContextConfigEnv\CCE\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\felegy\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.2.0</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>
\ No newline at end of file
Microsoft.NETCore.Platforms,1.1,Transitive,Main
Microsoft.NETCore.Targets,1.1,Transitive,Main
System.Runtime,4.3,Transitive,Main
System.Collections,4.3,Transitive,Main
System.ComponentModel,4.3,Transitive,Main
System.Diagnostics.Debug,4.3,Transitive,Main
System.Globalization,4.3,Transitive,Main
System.Reflection.Primitives,4.3,Transitive,Main
System.Runtime.Extensions,4.3,Transitive,Main
System.Runtime.Handles,4.3,Transitive,Main
System.Text.Encoding,4.3,Transitive,Main
System.Threading.Tasks,4.3,Transitive,Main
System.IO,4.3,Transitive,Main
System.Reflection,4.3,Transitive,Main
System.Reflection.Extensions,4.3,Transitive,Main
System.Reflection.TypeExtensions,4.3,Transitive,Main
System.Resources.ResourceManager,4.3,Transitive,Main
System.ComponentModel.Primitives,4.3,Transitive,Main
System.Linq,4.3,Transitive,Main
System.Runtime.InteropServices,4.3,Transitive,Main
System.Globalization.Extensions,4.3,Transitive,Main
System.Threading,4.3,Transitive,Main
System.Collections.NonGeneric,4.3,Transitive,Main
System.Collections.Specialized,4.3,Transitive,Main
System.ComponentModel.TypeConverter,4.3,Direct,Main
\ No newline at end of file
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("CCE")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("CCE")]
[assembly: System.Reflection.AssemblyTitleAttribute("CCE")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
C:\Users\felegy\ContextConfigEnv\CCE\bin\Debug\net452\CCE.dll
C:\Users\felegy\ContextConfigEnv\CCE\bin\Debug\net452\CCE.pdb
C:\Users\felegy\ContextConfigEnv\CCE\bin\Debug\net452\System.ComponentModel.Primitives.dll
C:\Users\felegy\ContextConfigEnv\CCE\bin\Debug\net452\System.ComponentModel.TypeConverter.dll
C:\Users\felegy\ContextConfigEnv\CCE\obj\Debug\net452\CCE.AssemblyInfo.cs
C:\Users\felegy\ContextConfigEnv\CCE\obj\Debug\net452\CCE.dll
C:\Users\felegy\ContextConfigEnv\CCE\obj\Debug\net452\CCE.pdb
C:\Users\felegy\ContextConfigEnv\CCE\obj\Debug\net452\CCE.csprojResolveAssemblyReference.cache
No preview for this file type
No preview for this file type
9a82e2e0967ce1e190582254bde5532838ed17ab
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("CCE")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("CCE")]
[assembly: System.Reflection.AssemblyTitleAttribute("CCE")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
C:\Users\felegy\ContextConfigEnv\CCE\bin\Debug\netstandard1.6\CCE.deps.json
C:\Users\felegy\ContextConfigEnv\CCE\obj\Debug\netstandard1.6\CCE.AssemblyInfo.cs
C:\Users\felegy\ContextConfigEnv\CCE\bin\Debug\netstandard1.6\CCE.dll
C:\Users\felegy\ContextConfigEnv\CCE\bin\Debug\netstandard1.6\CCE.pdb
C:\Users\felegy\ContextConfigEnv\CCE\obj\Debug\netstandard1.6\CCE.dll
C:\Users\felegy\ContextConfigEnv\CCE\obj\Debug\netstandard1.6\CCE.pdb
C:\Users\felegy\ContextConfigEnv\CCE\obj\Debug\netstandard1.6\CCE.csprojResolveAssemblyReference.cache
No preview for this file type
No preview for this file type
2cb5a9e7361609b860ff7a3d477e933c4632f782
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("CCE")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("CCE")]
[assembly: System.Reflection.AssemblyTitleAttribute("CCE")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff could not be displayed because it is too large.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff could not be displayed because it is too large.
No preview for this file type
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.