-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMassiveSort.csproj
More file actions
48 lines (40 loc) · 1.49 KB
/
MassiveSort.csproj
File metadata and controls
48 lines (40 loc) · 1.49 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<StartupObject>MurrayGrant.MassiveSort.Program</StartupObject>
<RootNamespace>MurrayGrant.MassiveSort</RootNamespace>
<PlatformTarget>AnyCPU</PlatformTarget>
<Title>MassiveSort</Title>
<Description>Sorts massive amounts of data</Description>
<Company>Murray Grant</Company>
<Product>MassiveSort</Product>
<Copyright>Copyright © Murray Grant 2015 - 2025</Copyright>
<Version>0.3.0</Version>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Releases\**" />
<EmbeddedResource Remove="Releases\**" />
<None Remove="Releases\**" />
</ItemGroup>
<ItemGroup>
<Content Include="LICENSE.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="MassiveSort.url">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Sorters\TimSort\TimSort.license.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="System.Management" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Management" />
</ItemGroup>
</Project>