-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathGlobalSettings.msbuild
31 lines (31 loc) · 1.39 KB
/
GlobalSettings.msbuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project>
<PropertyGroup>
<Authors>Ivan Abad</Authors>
<Company>NetMentor</Company>
<Product>NetMentor Distribt</Product>
<Copyright>Copyright NetMentor 2022</Copyright>
<Version>1.0.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/ElectNewt/Distribt</RepositoryUrl>
<Description>Library to build distributed applications</Description>
</PropertyGroup>
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<LangVersion>12.0</LangVersion>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- temporally disabled as there has been two years since i did this code and there are a few breaking changes in the new versions -->
<!-- <TreatWarningsAsErrors>true</TreatWarningsAsErrors> -->
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Description>Configuration=Debug</Description>
<Configuration>Debug</Configuration>
<Description>Configuration=Debug</Description>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Description>Configuration=Release</Description>
<Configuration>Release</Configuration>
<Description>Configuration=Release</Description>
</PropertyGroup>
</Project>