Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ indent_size = 4
generated_code = true

# XML project files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj,nativeproj,locproj}]
[*.{slnx,csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj,nativeproj,locproj}]
indent_size = 2

# Xml build files
Expand Down
13 changes: 7 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<ItemGroup>
<GlobalPackageReference Include="CSharpier.MSBuild" Version="1.0.3" />
<GlobalPackageReference Include="GitVersion.MsBuild" Version="6.3.0" />
<GlobalPackageReference Include="CSharpier.MSBuild" Version="1.1.2" />
<GlobalPackageReference Include="GitVersion.MsBuild" Version="6.4.0" />
<GlobalPackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="4.14.0" />
<GlobalPackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0" />
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.14.15" />
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.115" />
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="10.13.0.120203" />
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.4.0" />
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="10.15.0.120848" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="NetEvolve.Extensions.TUnit" Version="2.6.26" />
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.14.2" />
<PackageVersion Include="NetEvolve.Extensions.TUnit" Version="2.7.0" />
<PackageVersion Include="System.Memory" Version="4.6.3" />
<PackageVersion Include="TUnit" Version="0.25.21" />
<PackageVersion Include="TUnit" Version="0.57.1" />
</ItemGroup>
</Project>
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# template-dotnet
.NET template for repositories# NetEvolve.CodeBuilder
# NetEvolve.CodeBuilder

[![NuGet](https://img.shields.io/nuget/v/NetEvolve.CodeBuilder.svg)](https://www.nuget.org/packages/NetEvolve.CodeBuilder/)
[![Build Status](https://github.com/dailydevops/codebuilder/workflows/CI/badge.svg)](https://github.com/dailydevops/codebuilder/actions)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
namespace NetEvolve.CodeBuilder.Tests.Unit;

using NetEvolve.Extensions.TUnit;

[TestGroup(nameof(CSharpCodeBuilder))]
public partial class CSharpCodeBuilderTests { }
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" />
<PackageReference Include="NetEvolve.Extensions.TUnit" />
<PackageReference Include="TUnit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\NetEvolve.CodeBuilder\NetEvolve.CodeBuilder.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' != 'net6.0' and '$(TargetFramework)' != 'net7.0' ">
<PackageReference Include="NetEvolve.Extensions.TUnit" />
<ItemGroup>
<AssemblyAttribute Include="NetEvolve.Extensions.TUnit.UnitTestAttribute" />
</ItemGroup>
</Project>