diff options
Diffstat (limited to 'LibGit/LibGit.csproj')
-rw-r--r-- | LibGit/LibGit.csproj | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/LibGit/LibGit.csproj b/LibGit/LibGit.csproj new file mode 100644 index 0000000..ac74b55 --- /dev/null +++ b/LibGit/LibGit.csproj @@ -0,0 +1,17 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFramework>net7.0</TargetFramework> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + </PropertyGroup> + + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> + <DebugType>none</DebugType> + <DebugSymbols>false</DebugSymbols> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <WholeProgramOptimization>true</WholeProgramOptimization> + </PropertyGroup> + +</Project> |