-
Notifications
You must be signed in to change notification settings - Fork 2
/
DupMerge.csproj
68 lines (63 loc) · 2.99 KB
/
DupMerge.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ProjectGuid>{7B27249D-B1C7-4A7B-84B1-ECFAA77C0A09}</ProjectGuid>
<OutputType>Exe</OutputType>
<Version>1.0.1</Version>
<TargetFrameworks>net48;net7.0</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<langversion>default</langversion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ApplicationManifest>app.manifest</ApplicationManifest>
<PlatformTarget>AnyCPU</PlatformTarget>
<AssemblyTitle>DupMerge</AssemblyTitle>
<Company>»SynthelicZ«</Company>
<Product>DupMerge</Product>
<Description>Merges duplicate files into hardlinks and symlinks.</Description>
<Copyright>Copyright © Hawkynt 2018-2024</Copyright>
<OutputPath>bin\$(Configuration)\</OutputPath>
<StartupObject>DupMerge.Program</StartupObject>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<ILRepackTargetConfigurations>Debug;Release</ILRepackTargetConfigurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
</PropertyGroup>
<Import Project="..\Framework\VersionSpecificSymbols.Common.prop" />
<PropertyGroup Condition="$(IsNetCore)">
<TrimMode>full</TrimMode>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<ItemGroup Condition="$(IsNetFramework)">
<Reference Condition="$(TargetFramework) != 'net35'" Include="Microsoft.CSharp" />
<Reference Include="System.Transactions" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Framework\Corlib.Extensions\Guard\Against.cs" Link="Libraries\Against.cs" />
<Compile Include="..\Framework\Corlib.Extensions\Guard\Against.T4.cs" Link="Libraries\Against.T4.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Against.T4.tt</DependentUpon>
</Compile>
<Compile Include="..\Framework\Corlib.Extensions\Guard\AlwaysThrow.cs" Link="Libraries\AlwaysThrow.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FrameworkExtensions.Corlib" Version="1.0.2.413" />
<PackageReference Include="ILRepack.FullAuto" Version="1.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="T4.Build" Version="0.2.4" PrivateAssets="All" />
<None Include="..\Framework\Corlib.Extensions\Guard\Against.T4.tt" Link="Libraries\Against.T4.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Against.T4.cs</LastGenOutput>
</None>
<None Include="app.manifest" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>