Skip to content

Commit

Permalink
nuget configure
Browse files Browse the repository at this point in the history
  • Loading branch information
K1vs committed Mar 3, 2020
1 parent b1e6ca4 commit 966983c
Show file tree
Hide file tree
Showing 17 changed files with 353 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,31 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Demo.Bus.InMemory</RootNamespace>
<Authors>K1vs</Authors>
<Description>Extensible chat framework for systems with microservice architecture. In memory bus implementaion. Demo only. Never use on production.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>Demo only. Never use on production.</PackageReleaseNotes>
<Product>DotChat.Demo</Product>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\DotChat.FrameworkUtils\DotChat.FrameworkUtils.csproj" />
<ProjectReference Include="..\..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/Demo/DotChat.Demo.Others/DotChat.Demo.Others.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,30 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Demo.Others</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat.Demo</Product>
<Description>Extensible chat framework for systems with microservice architecture. Others demo implementaions. Demo only. Never use on production.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>Demo only. Never use on production.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,31 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Demo.Stores.InMemory</RootNamespace>
<Authors>K1vs</Authors>
<Description>Extensible chat framework for systems with microservice architecture. Others demo implementaions. Demo only. Never use on production.</Description>
<Product>DotChat.Demo</Product>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>Demo only. Never use on production.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\DotChat.Basic\DotChat.Basic.csproj" />
<ProjectReference Include="..\..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.Basic/DotChat.Basic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Basic</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat</Product>
<Description>Extensible chat framework for systems with microservice architecture. Basic not generic implementations.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
Expand All @@ -19,4 +32,11 @@
<ProjectReference Include="..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.Commands/DotChat.Commands.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,30 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Commands</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat</Product>
<Description>Extensible chat framework for systems with microservice architecture. Generic commands.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.Common/DotChat.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,30 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Common</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat</Product>
<Description>Extensible chat framework for systems with microservice architecture. Common shared types.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.Events/DotChat.Events.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,30 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Events</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat</Product>
<Description>Extensible chat framework for systems with microservice architecture. Generic events.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.FrameworkUtils/DotChat.FrameworkUtils.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.FrameworkUtils</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat</Product>
<Description>Extensible chat framework for systems with microservice architecture. Common framework utils.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.Models/DotChat.Models.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,30 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Models</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat</Product>
<Description>Extensible chat framework for systems with microservice architecture. Generic models.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.Modules/DotChat.Modules.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,30 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Modules</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat</Product>
<Description>Extensible chat framework for systems with microservice architecture. Basic module system.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.Notifications/DotChat.Notifications.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,30 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Notifications</RootNamespace>
<Authors>K1vs</Authors>
<Product>DotChat</Product>
<Description>Extensible chat framework for systems with microservice architecture. Generic notifications.</Description>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions DotChat/DotChat.Notifiers/DotChat.Notifiers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,30 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>K1vs.DotChat.Notifiers</RootNamespace>
<Authors>K1vs</Authors>
<Description>Extensible chat framework for systems with microservice architecture. Generic notifiers.</Description>
<Product>DotChat</Product>
<Copyright>2020 K1vs</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/K1vs/DotChat</PackageProjectUrl>
<RepositoryUrl>https://github.com/K1vs/DotChat</RepositoryUrl>
<PackageIcon>DotChatLogo.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>git</RepositoryType>
<PackageTags>chat, messaging, communication</PackageTags>
<PackageReleaseNotes>The initial version. Use in production only after full testing.</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DotChat\DotChat.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\DotChatLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 966983c

Please sign in to comment.