-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDirectory.build.props
More file actions
45 lines (40 loc) · 2.2 KB
/
Directory.build.props
File metadata and controls
45 lines (40 loc) · 2.2 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
40
41
42
43
44
45
<Project>
<PropertyGroup>
<BaseTargetFramework>net10.0</BaseTargetFramework>
<Authors>Allan Ritchie</Authors>
<Owners>aritchie;shinylib</Owners>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<DisableExtraReferences>False</DisableExtraReferences>
<EnableDefaultCompileItems>true</EnableDefaultCompileItems>
<PackageVersion>6.3.1-beta-0001</PackageVersion>
<Description>Shiny Mediator - A mediator pattern for all .NET Apps</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://shinylib.net/mediator</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageReleaseNotes>https://shinylib.net/release-notes/mediator</PackageReleaseNotes>
<PackageTags>mediator shiny aspnet maui blazor prism</PackageTags>
<RepositoryUrl>https://github.com/shinyorg/mediator</RepositoryUrl>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CI Condition="'$(GITHUB_ACTIONS)' == 'true'">true</CI>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework) != 'netstandard2.0'">
<EnableAotAnalyzer>true</EnableAotAnalyzer>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<EnableSingleFileAnalyzer>true</EnableSingleFileAnalyzer>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<IncludeSource>True</IncludeSource>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>True</PublishRepositoryUrl>
<EmbedUntrackedSources>True</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)nuget.png" Pack="true" PackagePath="icon.png" />
<None Include="$(MSBuildThisFileDirectory)readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>