Skip to content

Commit

Permalink
Add kiboards project
Browse files Browse the repository at this point in the history
  • Loading branch information
Jandini committed Oct 16, 2023
1 parent f8846a8 commit d73b543
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/KiBoards.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KiBoards.Xunit", "KiBoards.
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KiBoards.Tests", "KiBoards.Tests\KiBoards.Tests.csproj", "{BD23E63C-CC78-4714-A319-E492CC90178A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleTest", "SimpleTest\SimpleTest.csproj", "{EF1D5D1A-6836-4F3C-9BAB-9FD5BEE0EEB5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleTest", "SimpleTest\SimpleTest.csproj", "{EF1D5D1A-6836-4F3C-9BAB-9FD5BEE0EEB5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KiBoards", "KiBoards\KiBoards.csproj", "{BA545090-C497-4AF5-835E-54BFFC1031D1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -27,6 +29,10 @@ Global
{EF1D5D1A-6836-4F3C-9BAB-9FD5BEE0EEB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EF1D5D1A-6836-4F3C-9BAB-9FD5BEE0EEB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EF1D5D1A-6836-4F3C-9BAB-9FD5BEE0EEB5}.Release|Any CPU.Build.0 = Release|Any CPU
{BA545090-C497-4AF5-835E-54BFFC1031D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BA545090-C497-4AF5-835E-54BFFC1031D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA545090-C497-4AF5-835E-54BFFC1031D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BA545090-C497-4AF5-835E-54BFFC1031D1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
44 changes: 44 additions & 0 deletions src/KiBoards/KiBoards.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<BaseOutputPath>..\..\bin</BaseOutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>10</LangVersion>
<IsPackable>true</IsPackable>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>

<PropertyGroup>
<Authors>Matt Janda</Authors>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageId>KiBoards</PackageId>
<AssemblyName>KiBoards</AssemblyName>
<RootNamespace>KiBoards</RootNamespace>
<Description>KiBoards offers the capability to visualise test cases and test run in Kibana.</Description>
<PackageTags>KiBoards Xunit Kibana Elasticsearch</PackageTags>
<RepositoryUrl>https://github.com/Jandini/KiBoards</RepositoryUrl>
<PackageProjectUrl>https://github.com/Jandini/KiBoards</PackageProjectUrl>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="" />
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>

<PackageReference Include="GitVersion.MsBuild" Version="5.12.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.4.2" />
</ItemGroup>
</Project>

0 comments on commit d73b543

Please sign in to comment.