WorkTimeHero.csproj (5949B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <Project ToolsVersion="4.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>{5562D843-C5C9-4097-9E20-B280A410EE83}</ProjectGuid> 8 <OutputType>WinExe</OutputType> 9 <AppDesignerFolder>Properties</AppDesignerFolder> 10 <RootNamespace>WorkTimeHero</RootNamespace> 11 <AssemblyName>WorkTimeHero</AssemblyName> 12 <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> 13 <FileAlignment>512</FileAlignment> 14 <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> 15 <NoWin32Manifest>False</NoWin32Manifest> 16 <TargetFrameworkProfile /> 17 </PropertyGroup> 18 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 19 <PlatformTarget>AnyCPU</PlatformTarget> 20 <DebugSymbols>true</DebugSymbols> 21 <DebugType>full</DebugType> 22 <Optimize>false</Optimize> 23 <OutputPath>bin\Debug\</OutputPath> 24 <DefineConstants>DEBUG;TRACE</DefineConstants> 25 <ErrorReport>prompt</ErrorReport> 26 <WarningLevel>4</WarningLevel> 27 <RunCodeAnalysis>False</RunCodeAnalysis> 28 </PropertyGroup> 29 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 30 <PlatformTarget>AnyCPU</PlatformTarget> 31 <DebugType>pdbonly</DebugType> 32 <Optimize>true</Optimize> 33 <OutputPath>bin\Release\</OutputPath> 34 <DefineConstants>TRACE</DefineConstants> 35 <ErrorReport>prompt</ErrorReport> 36 <WarningLevel>4</WarningLevel> 37 <RunCodeAnalysis>true</RunCodeAnalysis> 38 <CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet> 39 </PropertyGroup> 40 <PropertyGroup> 41 <SignAssembly>true</SignAssembly> 42 </PropertyGroup> 43 <PropertyGroup> 44 <AssemblyOriginatorKeyFile>..\sgKey.snk</AssemblyOriginatorKeyFile> 45 </PropertyGroup> 46 <PropertyGroup> 47 <ApplicationIcon>clock-icon.ico</ApplicationIcon> 48 </PropertyGroup> 49 <PropertyGroup> 50 <StartupObject>WorkTimeHero.Program</StartupObject> 51 </PropertyGroup> 52 <ItemGroup> 53 <Reference Include="System" /> 54 <Reference Include="System.Core" /> 55 <Reference Include="Microsoft.CSharp" /> 56 <Reference Include="System.Data" /> 57 <Reference Include="System.Deployment" /> 58 <Reference Include="System.Drawing" /> 59 <Reference Include="System.Windows.Forms" /> 60 </ItemGroup> 61 <ItemGroup> 62 <Compile Include="AboutBox.cs"> 63 <SubType>Form</SubType> 64 </Compile> 65 <Compile Include="AboutBox.Designer.cs"> 66 <DependentUpon>AboutBox.cs</DependentUpon> 67 </Compile> 68 <Compile Include="BreakCalculatorExtension.cs" /> 69 <Compile Include="MainForm.cs"> 70 <SubType>Form</SubType> 71 </Compile> 72 <Compile Include="MainForm.Designer.cs"> 73 <DependentUpon>MainForm.cs</DependentUpon> 74 </Compile> 75 <Compile Include="Program.cs" /> 76 <Compile Include="Properties\AssemblyInfo.cs" /> 77 <Compile Include="Properties\Resources.Designer.cs"> 78 <AutoGen>True</AutoGen> 79 <DesignTime>True</DesignTime> 80 <DependentUpon>Resources.resx</DependentUpon> 81 </Compile> 82 <Compile Include="Settings.cs" /> 83 <Compile Include="WorkTimeCalculator.cs" /> 84 <EmbeddedResource Include="AboutBox.resx"> 85 <DependentUpon>AboutBox.cs</DependentUpon> 86 </EmbeddedResource> 87 <EmbeddedResource Include="MainForm.resx"> 88 <DependentUpon>MainForm.cs</DependentUpon> 89 </EmbeddedResource> 90 <EmbeddedResource Include="Properties\Resources.resx"> 91 <Generator>PublicResXFileCodeGenerator</Generator> 92 <SubType>Designer</SubType> 93 <LastGenOutput>Resources.Designer.cs</LastGenOutput> 94 </EmbeddedResource> 95 <None Include="..\..\StrongName.snk"> 96 <Link>StrongName.snk</Link> 97 </None> 98 <None Include="..\sgKey.snk"> 99 <Link>sgKey.snk</Link> 100 </None> 101 <None Include="Properties\Settings.settings"> 102 <Generator>SettingsSingleFileGenerator</Generator> 103 <LastGenOutput>Settings.Designer.cs</LastGenOutput> 104 </None> 105 <Compile Include="Properties\Settings.Designer.cs"> 106 <AutoGen>True</AutoGen> 107 <DependentUpon>Settings.settings</DependentUpon> 108 <DesignTimeSharedInput>True</DesignTimeSharedInput> 109 </Compile> 110 </ItemGroup> 111 <ItemGroup> 112 <None Include="App.config" /> 113 </ItemGroup> 114 <ItemGroup> 115 <COMReference Include="IWshRuntimeLibrary"> 116 <Guid>{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}</Guid> 117 <VersionMajor>1</VersionMajor> 118 <VersionMinor>0</VersionMinor> 119 <Lcid>0</Lcid> 120 <WrapperTool>tlbimp</WrapperTool> 121 <Isolated>False</Isolated> 122 <EmbedInteropTypes>True</EmbedInteropTypes> 123 </COMReference> 124 </ItemGroup> 125 <ItemGroup> 126 <None Include="clock-pause-icon.ico" /> 127 </ItemGroup> 128 <ItemGroup> 129 <None Include="clock-icon.ico" /> 130 </ItemGroup> 131 <ItemGroup> 132 <None Include="clock-go-icon.ico" /> 133 </ItemGroup> 134 <ItemGroup> 135 <None Include="clock-red-icon.ico" /> 136 </ItemGroup> 137 <ItemGroup> 138 <None Include="clock-error-icon.ico" /> 139 </ItemGroup> 140 <ItemGroup> 141 <None Include="clock-play-icon.ico" /> 142 </ItemGroup> 143 <ItemGroup> 144 <None Include="clock-stop-icon.ico" /> 145 </ItemGroup> 146 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 147 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 148 Other similar extension points exist, see Microsoft.Common.targets. 149 <Target Name="BeforeBuild"> 150 </Target> 151 <Target Name="AfterBuild"> 152 </Target> 153 --> 154 </Project>