Skip to content

Commit

Permalink
chore: remove nuspec and use project properties (#251)
Browse files Browse the repository at this point in the history
* chore: remove nuspec and use project properties

* chore: converted fully to the props

* chore: removed all the nuspec!

* chore: a pegasus gets wings
  • Loading branch information
RLittlesII authored Feb 10, 2024
1 parent b8832cc commit 925feee
Show file tree
Hide file tree
Showing 25 changed files with 50 additions and 314 deletions.
2 changes: 1 addition & 1 deletion .build/AirframeBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public partial class AirframeBuild : NukeBuild,
/// - Microsoft VisualStudio https://nuke.build/visualstudio
/// - Microsoft VSCode https://nuke.build/vscode
/// </summary>
public static int Main() => Execute<AirframeBuild>(x => x.Default);
public static int Main() => Execute<AirframeBuild>(build => build.Default);

public Target Default => definition => definition
.DependsOn(Restore)
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -341,4 +341,4 @@ ASALocalRun/
# Code Coverage
coverage/
test/**/coverage.json
.nuke/temp/
/.nuke/temp/
24 changes: 0 additions & 24 deletions .nuspec/Apple.nuspec

This file was deleted.

22 changes: 0 additions & 22 deletions .nuspec/Composition.nuspec

This file was deleted.

23 changes: 0 additions & 23 deletions .nuspec/Controls.nuspec

This file was deleted.

22 changes: 0 additions & 22 deletions .nuspec/Core.nuspec

This file was deleted.

20 changes: 0 additions & 20 deletions .nuspec/Data.nuspec

This file was deleted.

20 changes: 0 additions & 20 deletions .nuspec/Forms.nuspec

This file was deleted.

22 changes: 0 additions & 22 deletions .nuspec/MicrosoftDependencyInjection.nuspec

This file was deleted.

20 changes: 0 additions & 20 deletions .nuspec/Popup.nuspec

This file was deleted.

22 changes: 0 additions & 22 deletions .nuspec/Shiny.nuspec

This file was deleted.

20 changes: 0 additions & 20 deletions .nuspec/Synthetic.nuspec

This file was deleted.

20 changes: 0 additions & 20 deletions .nuspec/Timers.nuspec

This file was deleted.

20 changes: 0 additions & 20 deletions .nuspec/ViewModels.nuspec

This file was deleted.

16 changes: 0 additions & 16 deletions Airframe.sln
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{843C3844-B
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ViewModels", "src\ViewModels\ViewModels.csproj", "{CA4B6910-402D-40C3-99C6-8DF8E3ABF041}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuspec", ".nuspec", "{0FF56E4B-1F2D-4839-B857-9C878FC2F55B}"
ProjectSection(SolutionItems) = preProject
.nuspec/Controls.nuspec = .nuspec/Controls.nuspec
.nuspec/Forms.nuspec = .nuspec/Forms.nuspec
.nuspec/ViewModels.nuspec = .nuspec/ViewModels.nuspec
.nuspec/Popup.nuspec = .nuspec/Popup.nuspec
.nuspec/Composition.nuspec = .nuspec/Composition.nuspec
.nuspec/Data.nuspec = .nuspec/Data.nuspec
.nuspec/Synthetic.nuspec = .nuspec/Synthetic.nuspec
.nuspec/Core.nuspec = .nuspec/Core.nuspec
.nuspec/Shiny.nuspec = .nuspec/Shiny.nuspec
.nuspec/Timers.nuspec = .nuspec/Timers.nuspec
.nuspec/MicrosoftDependencyInjection.nuspec = .nuspec/MicrosoftDependencyInjection.nuspec
.nuspec/Apple.nuspec = .nuspec/Apple.nuspec
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = ".build", ".build\.build.csproj", "{8322904C-5A48-4A92-A5EA-2AF91F8C4595}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Composition", "src\Composition\Composition.csproj", "{36A9DAA0-FCD4-41A3-A046-C755937CA701}"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Rodney Littles, II & RocketSurgeonsGuild
Copyright (c) 2024 Rodney Littles, II & RocketSurgeonsGuild

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
17 changes: 16 additions & 1 deletion directory.build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,26 @@
<Authors>Rodney Littles II, Rocket Surgeons Guild contributors</Authors>
<Company>Rocket Surgeons Guild</Company>
<Copyright>Copyright Rocket Surgeons Guild © $([System.DateTime]::Now.ToString('yyyy'))</Copyright>
<IncludeContentInPack>true</IncludeContentInPack>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<Nullable>enable</Nullable>
<PackageIcon>images/packageicon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://rocketsurgeonsguild.github.io/</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)LICENSE" Pack="true" PackagePath="" />
<None
Include="$(MSBuildThisFileDirectory)/.nuke/temp/packageicon.png"
Condition="Exists('$(MSBuildThisFileDirectory)/.nuke/temp/packageicon.png')"
Pack="true"
PackagePath="/images/"
Visible="false"
/>
</ItemGroup>
</Project>
2 changes: 0 additions & 2 deletions directory.packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@
<PackageVersion Include="System.Reactive" Version="6.0.0" />
<PackageVersion Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
<PackageVersion Include="Toast.iOS" Version="1.2.0" />
<PackageVersion Include="Xamarin.Forms" Version="5.0.0.2622" />
<PackageVersion Include="Xamarin.Essentials" Version="1.8.1" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="coverlet.collector" Version="6.0.0" />
Expand Down
Loading

0 comments on commit 925feee

Please sign in to comment.