-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
85 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<PackageProjectUrl>https://github.com/monambike/monambike-core</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/monambike/monambike-core</RepositoryUrl> | ||
<ApplicationIcon>Resources\Images\256x256-icon.ico</ApplicationIcon> | ||
<GenerateDocumentationFile>False</GenerateDocumentationFile> | ||
<RepositoryType>git</RepositoryType> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<Copyright>Copyright © 2024-2024</Copyright> | ||
<PackageTags>monambike;github;certificate;social-media;links</PackageTags> | ||
<AssemblyVersion>1.2.0.0</AssemblyVersion> | ||
<PackageReleaseNotes>- GitHub API fetch support | ||
- Improve Monambike data</PackageReleaseNotes> | ||
<FileVersion>$(AssemblyVersion)</FileVersion> | ||
<Title>Monambike Core</Title> | ||
<Description>A personal package made for Monambike. | ||
Social: @monambike | Webiste: https://monambike.com</Description> | ||
<PackageIcon>256x256-icon.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<Version>$(AssemblyVersion)</Version> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="Resources\Curiosities.txt" /> | ||
<None Remove="Resources\Images\256x256-icon.png" /> | ||
<None Remove="Resources\Phrases.txt" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<CodeAnalysisDictionary Include="Resources\Images\256x256-icon.ico"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</CodeAnalysisDictionary> | ||
<AdditionalFiles Include="Resources\Curiosities.txt"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</AdditionalFiles> | ||
<Content Include="Resources\Images\256x256-icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="Resources\Phrases.txt"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="Octokit" Version="10.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="Resources\Images\256x256-icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent"> | ||
<Exec Command="gitversion /output buildserver" /> | ||
</Target> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters