|
1 | | -<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFramework>netcoreapp3.1</TargetFramework> |
|
12 | 12 | <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> |
13 | 13 | <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
14 | 14 | </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 | + |
16 | 33 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
17 | 34 | <DebugSymbols>true</DebugSymbols> |
18 | 35 | <DebugType>full</DebugType> |
|
52 | 69 | </ItemGroup> |
53 | 70 |
|
54 | 71 | <ItemGroup> |
| 72 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/> |
55 | 73 | <PackageReference Include="JetBrains.Annotations" Version="2019.1.3" /> |
56 | 74 | <PackageReference Include="Mono.Cecil" Version="0.11.2" /> |
57 | 75 | <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" /> |
62 | 77 | <PackageReference Include="System.Runtime" Version="4.3.1" /> |
63 | 78 | </ItemGroup> |
64 | 79 |
|
|
0 commit comments