-
Notifications
You must be signed in to change notification settings - Fork 0
/
Advent of Code 2020.csproj
68 lines (68 loc) · 2.71 KB
/
Advent of Code 2020.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D017CB45-4695-4C39-9312-9A1599E5EF7D}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Advent_of_Code_2020</RootNamespace>
<AssemblyName>Advent of Code 2020</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>none</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\</OutputPath>
<DefineConstants>
</DefineConstants>
<Optimize>true</Optimize>
<DebugType>none</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>none</ErrorReport>
</PropertyGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="Day21.cs" />
<Compile Include="Day20.cs" />
<Compile Include="Day19.cs" />
<Compile Include="Day18.cs" />
<Compile Include="Day17.cs" />
<Compile Include="Day16.cs" />
<Compile Include="Day15.cs" />
<Compile Include="Day14.cs" />
<Compile Include="Day13.cs" />
<Compile Include="Day12.cs" />
<Compile Include="Day11.cs" />
<Compile Include="Day10.cs" />
<Compile Include="Day25.cs" />
<Compile Include="Day24.cs" />
<Compile Include="Day23.cs" />
<Compile Include="Day22.cs" />
<Compile Include="Day9.cs" />
<Compile Include="Day8.cs" />
<Compile Include="Day7.cs" />
<Compile Include="Day6.cs" />
<Compile Include="Day5.cs" />
<Compile Include="Day4.cs" />
<Compile Include="Day3.cs" />
<Compile Include="Day2.cs" />
<Compile Include="Day1.cs" />
<Compile Include="Picker.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>