-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSVNPathCopy.Configuration.csproj
More file actions
31 lines (28 loc) · 1.14 KB
/
SVNPathCopy.Configuration.csproj
File metadata and controls
31 lines (28 loc) · 1.14 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<RootNamespace>SVNPathCopy.Configuration</RootNamespace>
<AssemblyName>SVNPathCopy.Configuration</AssemblyName>
<Version>2.0.0</Version>
<Authors>Moritz Reis</Authors>
<Description>Configuration application for SVN Path Copy</Description>
<Copyright>Copyright © 2025</Copyright>
<Platforms>x64;AnyCPU</Platforms>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<ApplicationIcon>Resources\SVNPathCopy-Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SVNPathCopy.Core\SVNPathCopy.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\SVNPathCopy-Icon.ico" />
</ItemGroup>
</Project>