-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJon.Wpf.CustomControls.csproj
136 lines (130 loc) · 5.51 KB
/
Jon.Wpf.CustomControls.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0-windows;net6.0-windows</TargetFrameworks>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Jon's WPF .NET v6/7 Extended Common Controls</Title>
<PackageProjectUrl>https://github.com/LittleBigSalino/Jon.Wpf.CustomControls#getting-started</PackageProjectUrl>
<Description>Jon.WPF.CustomControls is a collection of custom, reusable WPF controls. It is built with .NET 7.0 and intended to provide developers with controls that are commonly used but not included in the standard WPF toolkit.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/LittleBigSalino/Jon.Wpf.CustomControls#getting-started</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageTags>wpf .net core controls Wpf Extended TimePicker PropertyGrid ColorPicker Rating Custom Converters Wizard NumericUpDown ColorPicker ToggleSwitch Terminal Calculator Person Picture ChatGPT OpenAI TextToSqlQuery SentimentAnalysis Summarization</PackageTags>
<PackAsTool>False</PackAsTool>
<AssemblyVersion>2.3</AssemblyVersion>
<FileVersion>2.32</FileVersion>
<ApplicationIcon>wpfmostwanted.ico</ApplicationIcon>
<PackageIcon>wpfmostwanted.png</PackageIcon>
<Version>2.32</Version>
<Authors>Jon M. Sales</Authors>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>sgKey.snk</AssemblyOriginatorKeyFile>
<PackageReleaseNotes>Added 3rd control. TextToSqlQueryTextBlock and styled it as well. </PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="gettingStarted.md" pack="true" PackagePath="." />
</ItemGroup>
<ItemGroup>
<None Remove="gettingStarted.md" />
<None Remove="images\BlueWizardNew.png" />
<None Remove="images\EvaIcons-ArrowCircleUp.png" />
<None Remove="images\Unicons-ArrowCircleDown.png" />
<None Remove="images\wizard.png" />
<None Remove="images\wizard2.png" />
<None Remove="LICENSE.txt" />
<None Remove="Themes\newTallWiz.png" />
<None Remove="Themes\wizard2Tall.png" />
</ItemGroup>
<ItemGroup>
<Content Include="gettingStarted.md">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</Content>
<Resource Include="images\BlueWizardNew.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Content Include="images\EvaIcons-ArrowCircleUp.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="images\Unicons-ArrowCircleDown.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="LICENSE.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Resource Include="Themes\newTallWiz.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Content Include="wpfmostwanted.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="wpfmostwanted.png">
<PackagePath>\</PackagePath>
<Pack>True</Pack>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="HelixToolkit.Wpf" Version="2.24.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="System.Speech" Version="7.0.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Xunit.StaFact" Version="1.1.11" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="wpfmostwanted.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Page Update="Themes\ColorPickerStyles.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
<Page Update="Themes\Generic.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
<Page Update="Themes\NumericUpDownStyles.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
<Page Update="Themes\PropertyGridStyles.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
<Page Update="Themes\RatingStyles.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
<Page Update="Themes\TimePickerStyles.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
<Page Update="Themes\ToggleSwitchStyles.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
<Page Update="Themes\WatermarkTextboxStyles.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
<Page Update="Themes\WizardStyles.xaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Page>
</ItemGroup>
<ItemGroup>
<Folder Include="Nuget\" />
</ItemGroup>
</Project>