-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathKeePassDiceware.csproj
54 lines (48 loc) · 2.18 KB
/
KeePassDiceware.csproj
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
53
54
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="KeePass.props" />
<PropertyGroup>
<TargetFrameworks>net4.5.2</TargetFrameworks>
<LangVersion>latest</LangVersion>
<!-- *Must* be "KeePass Plugin" -->
<Product>KeePass Plugin</Product>
<ProductName>KeePass Diceware Plugin</ProductName>
<Description>A KeePass password generator based on the XKCD Diceware.</Description>
<PackageTags>keepass;diceware;plugin</PackageTags>
<Authors>Chris Marc Dailey (nitz)</Authors>
<PackageId>KeePass Diceware</PackageId>
<Company>cmd.wtf</Company>
<Copyright>Copyright © 2021-2023 cmd</Copyright>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<PackageLicenseExpression>AGPL-3.0</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/cmdwtf/KeePassDiceware</PackageProjectUrl>
<RepositoryUrl>https://github.com/cmdwtf/KeePassDiceware</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NeutralLanguage>en-US</NeutralLanguage>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Title>$(ProductName)</Title>
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
<GenerateResourceUsePreserializedResources>True</GenerateResourceUsePreserializedResources>
<VersionPrefix>2.0.0.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\*.txt" />
<EmbeddedResource Include="Resources\*.txt" />
</ItemGroup>
<ItemGroup>
<None Remove="App.config" />
<EmbeddedResource Include="App.config" />
<None Remove="KeePass.props" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y "$(OutDir)$(ProjectName).*" "$(KeePassPluginsPath)"" />
</Target>
</Project>