-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
redistributed nuget release packages for updated project structure
- Loading branch information
1 parent
6813321
commit 2e18478
Showing
35 changed files
with
219 additions
and
18 deletions.
There are no files selected for viewing
Binary file not shown.
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,21 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>Panama.IoC.Autofac</id> | ||
<version>1.0.0</version> | ||
<title>Panama</title> | ||
<authors>Diran Ogunlana</authors> | ||
<owners>Diran Ogunlana</owners> | ||
<licenseUrl>https://github.com/mrogunlana/Panama/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/mrogunlana/Panama</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>An Autofac implementation for Panama, the command architecture for .Net developed by Diran Ogunlana</description> | ||
<releaseNotes>Initial release - AutofacServiceLocator</releaseNotes> | ||
<copyright>Copyright 2019</copyright> | ||
<tags>C# micro-framework command cqrs</tags> | ||
<dependencies> | ||
<dependency id="Autofac" version="4.8.1.0" /> | ||
<dependency id="Panama" version="1.2.0" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
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
Binary file not shown.
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,21 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>Panama.Jobs.Quartz</id> | ||
<version>1.0.0</version> | ||
<title>Panama</title> | ||
<authors>Diran Ogunlana</authors> | ||
<owners>Diran Ogunlana</owners> | ||
<licenseUrl>https://github.com/mrogunlana/Panama/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/mrogunlana/Panama</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>A Quartz implementation for Panama, the command architecture for .Net developed by Diran Ogunlana</description> | ||
<releaseNotes>Initial release - Quartz Scheduler Implmentation</releaseNotes> | ||
<copyright>Copyright 2019</copyright> | ||
<tags>C# micro-framework command cqrs</tags> | ||
<dependencies> | ||
<dependency id="Quartz" version="3.0.7.0" /> | ||
<dependency id="Panama" version="1.2.0" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
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,55 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{169EE761-F9E6-42A0-A36E-359AAFDED4A6}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Panama.Security</RootNamespace> | ||
<AssemblyName>Panama.Security</AssemblyName> | ||
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="AESEncryptor.cs" /> | ||
<Compile Include="AESSaltGenerator.cs" /> | ||
<Compile Include="Base10Encryptor.cs" /> | ||
<Compile Include="Base64Encryptor.cs" /> | ||
<Compile Include="Interfaces\IBase10Encryptor.cs" /> | ||
<Compile Include="Interfaces\ISaltGenerator.cs" /> | ||
<Compile Include="Interfaces\IStringEncryptor.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="SHA256CryptoServiceEncryptor.cs" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</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,17 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>Panama.Security</id> | ||
<version>1.0.0</version> | ||
<title>Panama</title> | ||
<authors>Diran Ogunlana</authors> | ||
<owners>Diran Ogunlana</owners> | ||
<licenseUrl>https://github.com/mrogunlana/Panama/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/mrogunlana/Panama</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Various Security Protocal Implementations for Panama, the command architecture for .Net developed by Diran Ogunlana</description> | ||
<releaseNotes>Initial Release - AES and SHA encryptors with Salt Generator</releaseNotes> | ||
<copyright>Copyright 2019</copyright> | ||
<tags>C# micro-framework command cqrs</tags> | ||
</metadata> | ||
</package> |
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,36 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("Panama.Security")] | ||
[assembly: AssemblyDescription("Various Security Protocal Implementations for Panama, the command architecture for .Net developed by Diran Ogunlana")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("Panama.Security")] | ||
[assembly: AssemblyCopyright("Copyright © 2019")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("169ee761-f9e6-42a0-a36e-359aafded4a6")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
Panama.Security/obj/Debug/Panama.Security.csproj.FileListAbsolute.txt
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,5 @@ | ||
C:\Projects\command-handler-pattern\Panama.Security\bin\Debug\Panama.Security.dll | ||
C:\Projects\command-handler-pattern\Panama.Security\bin\Debug\Panama.Security.pdb | ||
C:\Projects\command-handler-pattern\Panama.Security\obj\Debug\Panama.Security.csproj.CoreCompileInputs.cache | ||
C:\Projects\command-handler-pattern\Panama.Security\obj\Debug\Panama.Security.dll | ||
C:\Projects\command-handler-pattern\Panama.Security\obj\Debug\Panama.Security.pdb |
Empty file.
Empty file.
Empty file.
5 changes: 5 additions & 0 deletions
5
Panama.Security/obj/Release/Panama.Security.csproj.FileListAbsolute.txt
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,5 @@ | ||
C:\Projects\command-handler-pattern\Panama.Security\bin\Release\Panama.Security.dll | ||
C:\Projects\command-handler-pattern\Panama.Security\bin\Release\Panama.Security.pdb | ||
C:\Projects\command-handler-pattern\Panama.Security\obj\Release\Panama.Security.csproj.CoreCompileInputs.cache | ||
C:\Projects\command-handler-pattern\Panama.Security\obj\Release\Panama.Security.dll | ||
C:\Projects\command-handler-pattern\Panama.Security\obj\Release\Panama.Security.pdb |
Empty file.
Empty file.
Empty file.
Binary file not shown.
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,23 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>Panama.Sql.Dapper</id> | ||
<version>1.0.0</version> | ||
<title>Panama</title> | ||
<authors>Diran Ogunlana</authors> | ||
<owners>Diran Ogunlana</owners> | ||
<licenseUrl>https://github.com/mrogunlana/Panama/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/mrogunlana/Panama</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>A Dapper implementation for Panama, the command architecture for .Net developed by Diran Ogunlana</description> | ||
<releaseNotes>Initial release - Basic SqlQuery Implmentation with Dapper</releaseNotes> | ||
<copyright>Copyright 2019</copyright> | ||
<tags>C# micro-framework command cqrs</tags> | ||
<dependencies> | ||
<dependency id="Newtonsoft.Json" version="12.0.0.0" /> | ||
<dependency id="Dapper" version="1.50.5.0" /> | ||
<dependency id="DapperExtensions" version="1.6.3.0" /> | ||
<dependency id="Panama" version="1.2.0" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
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
Binary file not shown.
Binary file not shown.
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,21 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>Panama</id> | ||
<version>1.2.0</version> | ||
<title>Panama</title> | ||
<authors>Diran Ogunlana</authors> | ||
<owners>Diran Ogunlana</owners> | ||
<licenseUrl>https://github.com/mrogunlana/Panama/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/mrogunlana/Panama</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>A simple command architecture for .Net developed by Diran Ogunlana</description> | ||
<releaseNotes>Beta Release - A simple command architecture for .Net developed by Diran Ogunlana</releaseNotes> | ||
<copyright>Copyright 2019</copyright> | ||
<tags>C# micro-framework command cqrs</tags> | ||
<dependencies> | ||
<dependency id="Newtonsoft.Json" version="11.0.1" /> | ||
<dependency id="NLog" version="4.4.12" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
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