Skip to content

Commit

Permalink
Merge pull request #1 from GodelTech/feature/init
Browse files Browse the repository at this point in the history
initial solution structure
  • Loading branch information
rodchenkov authored Mar 23, 2021
2 parents 150c9ef + bcf858d commit 26c2a03
Show file tree
Hide file tree
Showing 7 changed files with 162 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CodeCoverage.runsettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<!-- Configurations for data collectors -->
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="XPlat code coverage">
<Configuration>
<Format>cobertura,opencover</Format>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>
39 changes: 39 additions & 0 deletions GodelTech.Messaging.AzureServiceBus.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30907.101
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{1F808AFE-26B4-475B-AA21-50F3F781EEEF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{515565FC-F9FE-4337-A44C-103312E09C34}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GodelTech.Messaging.AzureServiceBus", "src\GodelTech.Messaging.AzureServiceBus\GodelTech.Messaging.AzureServiceBus.csproj", "{421CC2F2-9826-44AB-9CB7-EA884D49FD2C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GodelTech.Messaging.AzureServiceBus.Tests", "test\GodelTech.Messaging.AzureServiceBus.Tests\GodelTech.Messaging.AzureServiceBus.Tests.csproj", "{AB825FF7-97D3-4380-911A-25554167E2A4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{421CC2F2-9826-44AB-9CB7-EA884D49FD2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{421CC2F2-9826-44AB-9CB7-EA884D49FD2C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{421CC2F2-9826-44AB-9CB7-EA884D49FD2C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{421CC2F2-9826-44AB-9CB7-EA884D49FD2C}.Release|Any CPU.Build.0 = Release|Any CPU
{AB825FF7-97D3-4380-911A-25554167E2A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AB825FF7-97D3-4380-911A-25554167E2A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AB825FF7-97D3-4380-911A-25554167E2A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AB825FF7-97D3-4380-911A-25554167E2A4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{421CC2F2-9826-44AB-9CB7-EA884D49FD2C} = {1F808AFE-26B4-475B-AA21-50F3F781EEEF}
{AB825FF7-97D3-4380-911A-25554167E2A4} = {515565FC-F9FE-4337-A44C-103312E09C34}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {873AC41C-6AF2-424D-AA00-AE398971859C}
EndGlobalSection
EndGlobal
26 changes: 26 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
trigger:
batch: true
branches:
include:
- '*'

pr:
branches:
include:
- '*'

resources:
repositories:
- repository: GodelTech
type: github
endpoint: 'godeltech'
name: 'GodelTech/AzureDevOps.Pipeline.Templates'
ref: 'refs/tags/v1.8'

extends:
template: '.NET Core/NuGet.yml@GodelTech'
parameters:
artifactPackDirectory: 'packages'
buildConfiguration: 'Release'
internalFeed: '19324bbd-9baf-4407-b86d-3e7f0d145399/1574777e-9941-4b90-baa9-d9938266ac24'
sonarCloudOrganizationName: 'godeltech'
6 changes: 6 additions & 0 deletions src/GodelTech.Messaging.AzureServiceBus/Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace GodelTech.Messaging.AzureServiceBus
{
public class Class1
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageId>GodelTech.Messaging.AzureServiceBus</PackageId>
<VersionPrefix>1.0.0</VersionPrefix>
<Authors>v.rodchenko</Authors>
<Company>Godel Technologies</Company>
<Description>Library to work with Azure Service Bus.</Description>
<Copyright>Godel Technologies 2021</Copyright>
<PackageLicenseUrl>https://github.com/GodelTech/GodelTech.Messaging.AzureServiceBus/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/GodelTech/GodelTech.Messaging.AzureServiceBus/wiki</PackageProjectUrl>
<PackageIconUrl>https://www.gravatar.com/avatar/839234621070de51e7b9cabd5ceee8fe?s=64</PackageIconUrl>
<RepositoryUrl>https://github.com/GodelTech/GodelTech.Messaging.AzureServiceBus</RepositoryUrl>
<PackageTags>Messaging Azure ServiceBus</PackageTags>

<!-- XML documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<!-- Source Link needs this -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<!-- SonarQube needs this -->
<ProjectGuid>{00000000-0000-0000-0000-000000000001}</ProjectGuid>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.1.1" />

<!-- Source Link needs this -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>

<IsPackable>false</IsPackable>
<!-- SonarQube needs this -->
<ProjectGuid>{00000000-0000-0000-0000-000000000002}</ProjectGuid>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.3.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\GodelTech.Messaging.AzureServiceBus\GodelTech.Messaging.AzureServiceBus.csproj" />
</ItemGroup>

</Project>
13 changes: 13 additions & 0 deletions test/GodelTech.Messaging.AzureServiceBus.Tests/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using Xunit;

namespace GodelTech.Messaging.AzureServiceBus.Tests
{
public class UnitTest1
{
[Fact]
public void Test1()
{

}
}
}

0 comments on commit 26c2a03

Please sign in to comment.