-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
43 lines (37 loc) · 1.49 KB
/
Directory.Build.props
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
32
33
34
35
36
37
38
39
40
41
42
43
<Project>
<PropertyGroup>
<Company>Trakx</Company>
<Copyright>Copyright © 2024 Trakx</Copyright>
<RepositoryUrl>https://github.com/trakx/kaiko-api-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Deterministic>true</Deterministic>
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>Full</DebugType>
<DebugSymbols>True</DebugSymbols>
<Optimize>False</Optimize>
<Nullable>Enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ReportAnalyzer>true</ReportAnalyzer>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Version)' == '' ">
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">0.1.0</VersionPrefix>
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix).$(VersionSuffix)</Version>
<Version Condition=" '$(Version)' == '' ">$(VersionSuffix)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>none</DebugType>
<DebugSymbols>False</DebugSymbols>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>$(AssemblyName).Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE" PackagePath="" Pack="true" />
</ItemGroup>
</Project>