-
Notifications
You must be signed in to change notification settings - Fork 10
/
Directory.Build.props
52 lines (45 loc) · 2.34 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
44
45
46
47
48
49
50
51
52
<Project>
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<LangVersion>latest</LangVersion>
<Nullable>Enable</Nullable>
<DebugSymbols>true</DebugSymbols>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/kekyo/Epoxy.git</RepositoryUrl>
<Product>Epoxy</Product>
<Trademark>Epoxy</Trademark>
<Copyright>Copyright (c) Kouji Matsui</Copyright>
<Description>An independent flexible XAML MVVM library for .NET</Description>
<Company>Kouji Matsui (@kozy_kekyo, @[email protected])</Company>
<Authors>Kouji Matsui (@kozy_kekyo, @[email protected])</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/kekyo/Epoxy.git</PackageProjectUrl>
<PackageIcon>Epoxy.100.png</PackageIcon>
<PackageTags>mvvm;viewmodel;easy;simple;combinable;async;awaitable;command</PackageTags>
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<GenerateLibraryLayout>true</GenerateLibraryLayout>
<NoWarn>$(NoWarn);NU1605;NU1701;NU1803;NU1503;NU1902;NU1903;CA1416;NETSDK1202</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' != 'Release'">
<DebugType>portable</DebugType>
<Deterministic>false</Deterministic>
<EmbedUntrackedSources>false</EmbedUntrackedSources>
<ContinuousIntegrationBuild>false</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>embedded</DebugType>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<RepoRoot>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))</RepoRoot>
<PathMap>$(RepoRoot)=.</PathMap>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>