Skip to content

Commit e475d2f

Browse files
authored
Merge pull request #35 from JohnTheGr8/feat_appveyor
Packaging updates and AppVeyor integration
2 parents 26e06f7 + f98eee6 commit e475d2f

File tree

23 files changed

+67
-139
lines changed

23 files changed

+67
-139
lines changed

Flow.Launcher.Core/Flow.Launcher.Core.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,7 @@
5757
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
5858
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
5959
<PackageReference Include="squirrel.windows" Version="1.5.2" />
60-
<PackageReference Include="PropertyChanged.Fody" Version="3.2.8">
61-
<PrivateAssets>all</PrivateAssets>
62-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
63-
</PackageReference>
60+
<PackageReference Include="PropertyChanged.Fody" Version="2.5.13" />
6461
<PackageReference Include="SharpZipLib" Version="1.2.0" />
6562
<PackageReference Include="System.Runtime" Version="4.3.1" />
6663
</ItemGroup>

Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp3.1</TargetFramework>
@@ -12,7 +12,24 @@
1212
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
1313
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1414
</PropertyGroup>
15-
15+
16+
<PropertyGroup>
17+
<Version>1.0.0</Version>
18+
<PackageVersion>1.0.0-beta1</PackageVersion>
19+
<AssemblyVersion>1.0.0</AssemblyVersion>
20+
<FileVersion>1.0.0</FileVersion>
21+
<PackageId>Flow.Launcher.Plugin</PackageId>
22+
<IncludeSymbols>true</IncludeSymbols>
23+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
24+
<Authors>Flow-Launcher</Authors>
25+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
26+
<RepositoryUrl>https://github.com/Flow-Launcher/Flow.Launcher</RepositoryUrl>
27+
<PackageDescription>Reference this library if you want to develop a Flow Launcher plugin</PackageDescription>
28+
<PackageTags>flowlauncher</PackageTags>
29+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
30+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
31+
</PropertyGroup>
32+
1633
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1734
<DebugSymbols>true</DebugSymbols>
1835
<DebugType>full</DebugType>
@@ -52,13 +69,11 @@
5269
</ItemGroup>
5370

5471
<ItemGroup>
72+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
5573
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
5674
<PackageReference Include="Mono.Cecil" Version="0.11.2" />
5775
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
58-
<PackageReference Include="PropertyChanged.Fody" Version="3.2.8">
59-
<PrivateAssets>all</PrivateAssets>
60-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
61-
</PackageReference>
76+
<PackageReference Include="PropertyChanged.Fody" Version="2.5.13" />
6277
<PackageReference Include="System.Runtime" Version="4.3.1" />
6378
</ItemGroup>
6479

Flow.Launcher.Test/Flow.Launcher.Test.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,4 @@
5656
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
5757
</ItemGroup>
5858

59-
<ItemGroup>
60-
<Folder Include="Properties\" />
61-
</ItemGroup>
62-
6359
</Project>

Flow.Launcher.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
6363
README.md = README.md
6464
SolutionAssemblyInfo.cs = SolutionAssemblyInfo.cs
6565
Scripts\flowlauncher.nuspec = Scripts\flowlauncher.nuspec
66-
Scripts\flowlauncher.plugin.nuspec = Scripts\flowlauncher.plugin.nuspec
6766
EndProjectSection
6867
EndProject
6968
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloWorldCSharp", "Plugins\HelloWorldCSharp\HelloWorldCSharp.csproj", "{03FFA443-5F50-48D5-8869-F3DF316803AA}"

Flow.Launcher/Flow.Launcher.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,7 @@
7474
<PrivateAssets>all</PrivateAssets>
7575
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
7676
</PackageReference>
77-
<PackageReference Include="PropertyChanged.Fody" Version="3.2.8">
78-
<PrivateAssets>all</PrivateAssets>
79-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
80-
</PackageReference>
77+
<PackageReference Include="PropertyChanged.Fody" Version="2.5.13" />
8178
<PackageReference Include="System.Data.SQLite" Version="1.0.112" />
8279
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.112" />
8380
<PackageReference Include="System.Runtime" Version="4.3.1" />

Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,4 @@
8080
<PackageReference Include="UnidecodeSharp" Version="1.0.0" />
8181
</ItemGroup>
8282

83-
<ItemGroup>
84-
<Folder Include="Properties\" />
85-
</ItemGroup>
86-
8783
</Project>

Plugins/Flow.Launcher.Plugin.Calculator/Flow.Launcher.Plugin.Calculator.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@
9999
<ItemGroup>
100100
<Folder Include="Images\" />
101101
<Folder Include="ViewModels\" />
102-
<Folder Include="Properties\" />
103102
</ItemGroup>
104103

105104
<ItemGroup>

Plugins/Flow.Launcher.Plugin.Color/Flow.Launcher.Plugin.Color.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,4 @@
101101
<PackageReference Include="System.Runtime" Version="4.3.1" />
102102
</ItemGroup>
103103

104-
<ItemGroup>
105-
<Folder Include="Properties\" />
106-
</ItemGroup>
107-
108104
</Project>

Plugins/Flow.Launcher.Plugin.ControlPanel/Flow.Launcher.Plugin.ControlPanel.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,4 @@
101101
<PackageReference Include="System.Runtime" Version="4.3.1" />
102102
</ItemGroup>
103103

104-
<ItemGroup>
105-
<Folder Include="Properties\" />
106-
</ItemGroup>
107-
108104
</Project>

Plugins/Flow.Launcher.Plugin.Everything/Flow.Launcher.Plugin.Everything.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,4 @@
128128
<PackageReference Include="System.Runtime" Version="4.3.1" />
129129
</ItemGroup>
130130

131-
<ItemGroup>
132-
<Folder Include="Properties\" />
133-
</ItemGroup>
134-
135131
</Project>

0 commit comments

Comments
 (0)