result/Directory.Build.props
Louis Seubert ca9f290d44
All checks were successful
dotnet publish / package (8.0) (push) Successful in 37s
feat: initial project commit
2024-04-14 17:45:15 +02:00

24 lines
No EOL
770 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<Authors>The Geekeey Team</Authors>
<Description>A simple and lightweight result type implementation for C#.</Description>
<PackageTags>geekeey utility result</PackageTags>
<PackageReadmeFile>package-readme.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>Geekeey.Common.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>Geekeey.Common.$(MSBuildProjectName)</RootNamespace>
</PropertyGroup>
</Project>