-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdventOfCode.csproj
More file actions
32 lines (28 loc) · 976 Bytes
/
AdventOfCode.csproj
File metadata and controls
32 lines (28 loc) · 976 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Content Include="inputs\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="samples\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="samples\2024\Day10.txt" />
<None Remove="samples\2024\Day11.txt" />
<None Remove="samples\2024\Day12.txt" />
<None Remove="samples\2024\Day3.txt" />
<None Remove="samples\2024\Day4.txt" />
<None Remove="samples\2024\Day5.txt" />
<None Remove="samples\2024\Day6.txt" />
<None Remove="samples\2024\Day7.txt" />
<None Remove="samples\2024\Day8.txt" />
<None Remove="samples\2024\Day9.txt" />
</ItemGroup>
</Project>