-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
52 lines (51 loc) · 2.78 KB
/
Directory.Build.props
File metadata and controls
52 lines (51 loc) · 2.78 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
46
47
48
49
50
51
52
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<Authors>Aristide Herve Mbassi</Authors>
<Company>OSS Cameroon</Company>
<PackageId>SocialiteNET</PackageId>
<Description>
OAuth authentication with Bitbucket, Facebook, GitHub, GitLab, Google, LinkedIn, Slack, Twitch, and X becomes expressive and fluid with Socialite.
It manages nearly every boilerplate social authentication code that you are afraid to write.
</Description>
<PackageTags>oauth;authentication;socialite;aspnetcore;facebook;google;github;social auth;identity</PackageTags>
<PackageProjectUrl>https://github.com/osscameroon/net-social-auth</PackageProjectUrl>
<RepositoryUrl>https://github.com/osscameroon/net-social-auth</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<IsTestProject>false</IsTestProject>
<IsTestProject Condition="$(MSBuildProjectName.EndsWith('Tests'))">true</IsTestProject>
</PropertyGroup>
<PropertyGroup Condition="'$(IsTestProject)' == 'false'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
<DebugType>embedded</DebugType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<Choose>
<When Condition="'$(GITHUB_ACTIONS)' == 'true'">
<PropertyGroup>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup Condition="'$(IsTestProject)' == 'false'">
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" Condition="'$(GITHUB_ACTIONS)' == 'true'"/>
</ItemGroup>
</When>
</Choose>
<ItemGroup Condition="'$(IsTestProject)' == 'false' and '$(MSBuildProjectName)' != '_build'">
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\..\assets\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>