-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit aa6e8ed Author: Mohammad Sadegh Shad <[email protected]> Date: Sun Apr 30 15:53:23 2023 +0330 Clear out the extra logging providers commit e241dd7 Author: Mohammad Sadegh Shad <[email protected]> Date: Thu Apr 20 17:49:35 2023 +0330 Update publish_Olive.yml commit 1982856 Author: Mohammad Sadegh Shad <[email protected]> Date: Thu Apr 20 17:40:00 2023 +0330 Update publish_Olive.yml commit 81da26d Author: Mohammad Sadegh Shad <[email protected]> Date: Thu Apr 20 17:21:55 2023 +0330 Update publish_Olive.yml commit 895a592 Author: Mohammad Sadegh Shad <[email protected]> Date: Thu Apr 20 17:19:04 2023 +0330 Cleanup csprojs, Update deps
- Loading branch information
1 parent
7109b59
commit aa64776
Showing
71 changed files
with
577 additions
and
2,053 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<AssemblyName>$(MSBuildProjectName)</AssemblyName> | ||
<RootNamespace>$(MSBuildProjectName)</RootNamespace> | ||
<PackageId>$(MSBuildProjectName)</PackageId> | ||
<Product>$(AssemblyName) ($(TargetFramework))</Product> | ||
<PackOnBuild>true</PackOnBuild> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<LangVersion>default</LangVersion> | ||
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet> | ||
<LangVersion>latest</LangVersion> | ||
<DebugType>portable</DebugType> | ||
<PackageProjectUrl>https://geeksltd.github.io/Olive</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Geeksltd/Olive</RepositoryUrl> | ||
<PackageIconUrl>http://licensing.msharp.co.uk/Images/OliveComponent.png</PackageIconUrl> | ||
<PackageTags>olive</PackageTags> | ||
<Title>$(MSBuildProjectName)</Title> | ||
<Description>Olive Framework</Description> | ||
<PackageReleaseNotes>Minor fixes</PackageReleaseNotes> | ||
<Owners>Geeks Ltd</Owners> | ||
<Authors>Geeks Ltd</Authors> | ||
<Copyright>Geeks Ltd 2023, All rights reserved.</Copyright> | ||
<DisableExtraReferences>true</DisableExtraReferences> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)'=='Debug' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<GenerateDocumentationFile>false</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)'=='Release' "> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</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
40 changes: 6 additions & 34 deletions
40
Olive.Audit.DatabaseLogger/Olive.Audit.DatabaseLogger.csproj
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
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,46 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Olive.Aws.EventBus</AssemblyName> | ||
<RootNamespace>Olive.Aws.EventBus</RootNamespace> | ||
<PackageId>Olive.Aws.EventBus</PackageId> | ||
<Product>$(AssemblyName) ($(TargetFramework))</Product> | ||
<Version>2.1.153</Version> | ||
<PackOnBuild>true</PackOnBuild> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<LangVersion>default</LangVersion> | ||
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet> | ||
<LangVersion>latest</LangVersion> | ||
<DebugType>portable</DebugType> | ||
<PackageProjectUrl>https://geeksltd.github.io/Olive</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Geeksltd/Olive</RepositoryUrl> | ||
<PackageIconUrl>http://licensing.msharp.co.uk/Images/OliveComponent.png</PackageIconUrl> | ||
<PackageTags>olive</PackageTags> | ||
<Title>Olive.Aws.EventBus</Title> | ||
<Description>Olive Framework</Description> | ||
<PackageReleaseNotes>Minor fixes</PackageReleaseNotes> | ||
<Owners>Geeks Ltd</Owners> | ||
<Authors>Geeks Ltd</Authors> | ||
<Copyright>Geeks Ltd 2021, All rights reserved.</Copyright> | ||
<DisableExtraReferences>true</DisableExtraReferences> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)'=='Debug' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<GenerateDocumentationFile>false</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)'=='Release' "> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="AWSSDK.SQS" Version="3.7.0.14" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Olive.Aws\Olive.Aws.csproj" /> | ||
<ProjectReference Include="..\Olive.EventBus\Olive.EventBus.csproj" /> | ||
</ItemGroup> | ||
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(Running)'=='local'"> | ||
<Exec Command="update-local-nuget-cache" /> | ||
</Target> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<Version>2.1.154</Version> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="AWSSDK.SQS" Version="3.7.100.115" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Olive.Aws\Olive.Aws.csproj" /> | ||
<ProjectReference Include="..\Olive.EventBus\Olive.EventBus.csproj" /> | ||
</ItemGroup> | ||
|
||
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(Running)'=='local'"> | ||
<Exec Command="update-local-nuget-cache" /> | ||
</Target> | ||
</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
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.