process/Directory.Build.props
Louis Seubert b54acec2f2
Some checks failed
default / default (8.0) (push) Failing after 26s
feat: initial project commit
2024-05-08 22:13:03 +02:00

27 lines
876 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>
<VersionPrefix>1.0.0</VersionPrefix>
<!--<VersionSuffix></VersionSuffix>-->
</PropertyGroup>
<PropertyGroup>
<AssemblyName>Geekeey.Extensions.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>Geekeey.Extensions.$(MSBuildProjectName)</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<Authors>The Geekeey Team</Authors>
<Description>A simple and lightweight way to interact with other processes from C#.</Description>
<PackageTags>geekeey utility process</PackageTags>
<PackageReadmeFile>package-readme.md</PackageReadmeFile>
</PropertyGroup>
</Project>