-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
39 lines (39 loc) · 2.25 KB
/
Copy pathDirectory.Build.props
File metadata and controls
39 lines (39 loc) · 2.25 KB
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
<Project>
<PropertyGroup>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<ContinuousIntegrationBuild Condition="'$(TF_BUILD)' == 'true'">true</ContinuousIntegrationBuild>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<LangVersion>9.0</LangVersion>
<AssemblyName Condition="'$(AssemblyName)' == ''">$(MSBuildProjectName)</AssemblyName>
<RootNamespace Condition="'$(RootNamespace)' == ''">$(MSBuildProjectName)</RootNamespace>
<PackageId Condition="'$(PackageId)' == ''">$(MSBuildProjectName)</PackageId>
<IsPackable>false</IsPackable>
<Deterministic>true</Deterministic>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Mammoth.png</PackageIcon>
<PackageDescription>Mammoth.LiteMapper is a convention-first, compile-time object mapping library for C#.</PackageDescription>
<PackageProjectUrl>https://github.com/PrimordialCode/Mammoth.LiteMapper</PackageProjectUrl>
<PackageTags>object-mapping, convention-first, compile-time</PackageTags>
<RepositoryUrl>https://github.com/PrimordialCode/Mammoth.LiteMapper</RepositoryUrl>
<Copyright>Copyright Giorgetti Alessandro 2026</Copyright>
<Authors>Alessandro Giorgetti</Authors>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)Mammoth.png" Pack="true" PackagePath="" Visible="false" />
<PackageReference Include="Microsoft.SourceLink.GitHub">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>