Skip to content

Commit a2bea1f

Browse files
committed
Replace binary annotations to source code in release projects
1 parent 76a2620 commit a2bea1f

File tree

6 files changed

+1114
-104
lines changed

6 files changed

+1114
-104
lines changed

CodeJam.sln

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.24720.0
4+
VisualStudioVersion = 14.0.25123.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeJam.Main", "Main\src\CodeJam.Main.csproj", "{2F2046CC-FB47-4318-B335-5A82B04B6C40}"
77
EndProject
@@ -20,6 +20,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2020
appveyor.yml = appveyor.yml
2121
CodeJamDoc.shfbproj = CodeJamDoc.shfbproj
2222
CONTRIBUTING.md = CONTRIBUTING.md
23+
Jetbrains.Annotations.cs = Jetbrains.Annotations.cs
2324
LICENSE = LICENSE
2425
README.md = README.md
2526
EndProjectSection
Lines changed: 84 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,91 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{7BD77DA2-A731-400C-A88E-215FC592E6E3}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>CodeJam</RootNamespace>
11-
<AssemblyName>CodeJam.Experimental</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
14-
<TargetFrameworkProfile />
15-
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17-
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
21-
<DefineConstants>TRACE;DEBUG;JETBRAINS_ANNOTATIONS</DefineConstants>
22-
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
24-
</PropertyGroup>
25-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
27-
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
29-
<DefineConstants>TRACE;JETBRAINS_ANNOTATIONS</DefineConstants>
30-
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
32-
</PropertyGroup>
33-
<PropertyGroup>
34-
<SignAssembly>true</SignAssembly>
35-
</PropertyGroup>
36-
<PropertyGroup>
37-
<AssemblyOriginatorKeyFile>..\..\CodeJam.snk</AssemblyOriginatorKeyFile>
38-
</PropertyGroup>
39-
<ItemGroup>
40-
<Reference Include="JetBrains.Annotations, Version=10.0.0.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL">
41-
<HintPath>..\..\packages\JetBrains.Annotations.10.0.0\lib\net20\JetBrains.Annotations.dll</HintPath>
42-
<Private>True</Private>
43-
</Reference>
44-
<Reference Include="System" />
45-
<Reference Include="System.Core" />
46-
</ItemGroup>
47-
<ItemGroup>
48-
<Compile Include="CmdLine\CommandLineChecker.cs" />
49-
<Compile Include="CmdLine\CommandLineHelper.cs" />
50-
<Compile Include="CmdLine\Model\Checking\CmdLineRules.cs" />
51-
<Compile Include="CmdLine\Model\Checking\CommandLineCheckException.cs" />
52-
<Compile Include="CmdLine\Model\Checking\CommandQuantifier.cs" />
53-
<Compile Include="CmdLine\Model\Checking\CommandRule.cs" />
54-
<Compile Include="CmdLine\Model\Checking\OptionRule.cs" />
55-
<Compile Include="CmdLine\Model\OptionType.cs" />
56-
<Compile Include="CmdLine\OptionPrefix.cs" />
57-
<Compile Include="CmdLine\Parser\CharInput.cs" />
58-
<Compile Include="CmdLine\Parser\CmdLineNode.cs" />
59-
<Compile Include="CmdLine\Parser\CmdLineNodeBase.cs" />
60-
<Compile Include="CmdLine\Parser\CommandLineParser.cs" />
61-
<Compile Include="CmdLine\Parser\CommandLineParser.Helpers.cs" />
62-
<Compile Include="CmdLine\Parser\CommandNode.cs" />
63-
<Compile Include="CmdLine\Parser\ICharInput.cs" />
64-
<Compile Include="CmdLine\Parser\OptionNode.cs" />
65-
<Compile Include="CmdLine\Parser\ParseResult.cs" />
66-
<Compile Include="CmdLine\Parser\ParsingException.cs" />
67-
<Compile Include="CmdLine\Parser\QuotedOrNonquotedValueNode.cs" />
68-
<Compile Include="CmdLine\PrintUsageSettings.cs" />
69-
<Compile Include="CmdLine\UsagePrinter.cs" />
70-
<Compile Include="Csv\CsvParser.cs" />
71-
<Compile Include="Csv\CsvPrinter.cs" />
72-
<Compile Include="Ranges\ImmutableRangeList.cs" />
73-
<Compile Include="Ranges\ImmutableRangeListExtensions.cs" />
74-
<Compile Include="Ranges\Range%271.cs" />
75-
<Compile Include="Ranges\Range.cs" />
76-
<Compile Include="Properties\AssemblyInfo.cs" />
77-
</ItemGroup>
78-
<ItemGroup>
79-
<None Include="packages.config" />
80-
</ItemGroup>
81-
<ItemGroup>
82-
<ProjectReference Include="..\..\Main\src\CodeJam.Main.csproj">
83-
<Project>{2f2046cc-fb47-4318-b335-5a82b04b6c40}</Project>
84-
<Name>CodeJam.Main</Name>
85-
</ProjectReference>
86-
</ItemGroup>
87-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{7BD77DA2-A731-400C-A88E-215FC592E6E3}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>CodeJam</RootNamespace>
11+
<AssemblyName>CodeJam.Experimental</AssemblyName>
12+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\Debug\</OutputPath>
21+
<DefineConstants>TRACE;DEBUG;JETBRAINS_ANNOTATIONS</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<DebugType>pdbonly</DebugType>
27+
<Optimize>true</Optimize>
28+
<OutputPath>bin\Release\</OutputPath>
29+
<DefineConstants>TRACE;JETBRAINS_ANNOTATIONS</DefineConstants>
30+
<ErrorReport>prompt</ErrorReport>
31+
<WarningLevel>4</WarningLevel>
32+
</PropertyGroup>
33+
<PropertyGroup>
34+
<SignAssembly>true</SignAssembly>
35+
</PropertyGroup>
36+
<PropertyGroup>
37+
<AssemblyOriginatorKeyFile>..\..\CodeJam.snk</AssemblyOriginatorKeyFile>
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<Reference Include="System" />
41+
<Reference Include="System.Core" />
42+
</ItemGroup>
43+
<ItemGroup>
44+
<Compile Include="..\..\Jetbrains.Annotations.cs">
45+
<Link>Jetbrains.Annotations.cs</Link>
46+
</Compile>
47+
<Compile Include="CmdLine\CommandLineChecker.cs" />
48+
<Compile Include="CmdLine\CommandLineHelper.cs" />
49+
<Compile Include="CmdLine\Model\Checking\CmdLineRules.cs" />
50+
<Compile Include="CmdLine\Model\Checking\CommandLineCheckException.cs" />
51+
<Compile Include="CmdLine\Model\Checking\CommandQuantifier.cs" />
52+
<Compile Include="CmdLine\Model\Checking\CommandRule.cs" />
53+
<Compile Include="CmdLine\Model\Checking\OptionRule.cs" />
54+
<Compile Include="CmdLine\Model\OptionType.cs" />
55+
<Compile Include="CmdLine\OptionPrefix.cs" />
56+
<Compile Include="CmdLine\Parser\CharInput.cs" />
57+
<Compile Include="CmdLine\Parser\CmdLineNode.cs" />
58+
<Compile Include="CmdLine\Parser\CmdLineNodeBase.cs" />
59+
<Compile Include="CmdLine\Parser\CommandLineParser.cs" />
60+
<Compile Include="CmdLine\Parser\CommandLineParser.Helpers.cs" />
61+
<Compile Include="CmdLine\Parser\CommandNode.cs" />
62+
<Compile Include="CmdLine\Parser\ICharInput.cs" />
63+
<Compile Include="CmdLine\Parser\OptionNode.cs" />
64+
<Compile Include="CmdLine\Parser\ParseResult.cs" />
65+
<Compile Include="CmdLine\Parser\ParsingException.cs" />
66+
<Compile Include="CmdLine\Parser\QuotedOrNonquotedValueNode.cs" />
67+
<Compile Include="CmdLine\PrintUsageSettings.cs" />
68+
<Compile Include="CmdLine\UsagePrinter.cs" />
69+
<Compile Include="Csv\CsvParser.cs" />
70+
<Compile Include="Csv\CsvPrinter.cs" />
71+
<Compile Include="Ranges\ImmutableRangeList.cs" />
72+
<Compile Include="Ranges\ImmutableRangeListExtensions.cs" />
73+
<Compile Include="Ranges\Range%271.cs" />
74+
<Compile Include="Ranges\Range.cs" />
75+
<Compile Include="Properties\AssemblyInfo.cs" />
76+
</ItemGroup>
77+
<ItemGroup>
78+
<ProjectReference Include="..\..\Main\src\CodeJam.Main.csproj">
79+
<Project>{2f2046cc-fb47-4318-b335-5a82b04b6c40}</Project>
80+
<Name>CodeJam.Main</Name>
81+
</ProjectReference>
82+
</ItemGroup>
83+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8884
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
8985
Other similar extension points exist, see Microsoft.Common.targets.
9086
<Target Name="BeforeBuild">
9187
</Target>
9288
<Target Name="AfterBuild">
9389
</Target>
94-
-->
90+
-->
9591
</Project>

Experimental/src/packages.config

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)