-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMosey.GUI.csproj
63 lines (62 loc) · 2.7 KB
/
Mosey.GUI.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>Mosey.ico</ApplicationIcon>
<Win32Resource />
<Authors>Erik White</Authors>
<Platforms>AnyCPU</Platforms>
<PackageProjectUrl>https://github.com/Erik-White/Mosey</PackageProjectUrl>
<RepositoryUrl>https://github.com/Erik-White/Mosey.git</RepositoryUrl>
<Version>2.0.1</Version>
<Company />
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageTags>imaging, scan, scanning</PackageTags>
<AssemblyVersion>2.0.1.0</AssemblyVersion>
<FileVersion>2.0.1.0</FileVersion>
<Description>Multi scanner interval imaging tool. Runs on Windows 7 and up</Description>
<RepositoryType>git</RepositoryType>
<StartupObject>
</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Prefer32Bit>false</Prefer32Bit>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<TrimmerRootAssembly Include="System.IO.FileSystem.DriveInfo" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="6.0.4" />
<PackageReference Include="MahApps.Metro" Version="2.4.9" />
<PackageReference Include="MahApps.Metro.IconPacks.Material" Version="4.11.0" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="6.0.0" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" />
<PackageReference Include="NReco.Logging.File" Version="1.1.4" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Mosey\Mosey.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="usersettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Generator>MSBuild:Compile</Generator>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="ViewModels\Extensions\" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
</ItemGroup>
</Project>