Skip to content

Commit cf32341

Browse files
committed
Initial Load.
0 parents  commit cf32341

File tree

9 files changed

+471
-0
lines changed

9 files changed

+471
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
bin
2+
Bin
3+
obj
4+
Obj
5+
release
6+
Release
7+
*.user
8+
*.suo

CR_ConvertStringToAppSetting.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.30110.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CR_ConvertStringToAppSetting", "CR_ConvertStringToAppSetting\CR_ConvertStringToAppSetting.csproj", "{C34A29E9-C262-4B9D-91FF-15AF58745F65}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C34A29E9-C262-4B9D-91FF-15AF58745F65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C34A29E9-C262-4B9D-91FF-15AF58745F65}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C34A29E9-C262-4B9D-91FF-15AF58745F65}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C34A29E9-C262-4B9D-91FF-15AF58745F65}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
17.6 KB
Loading
Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.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+
<ProductVersion>10.0.20506</ProductVersion>
8+
<SchemaVersion>2.0</SchemaVersion>
9+
<ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
10+
<ProjectGuid>{C34A29E9-C262-4B9D-91FF-15AF58745F65}</ProjectGuid>
11+
<OutputType>Library</OutputType>
12+
<AppDesignerFolder>Properties</AppDesignerFolder>
13+
<RootNamespace>CR_ConvertStringToAppSetting</RootNamespace>
14+
<AssemblyName>CR_ConvertStringToAppSetting</AssemblyName>
15+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16+
<FileAlignment>512</FileAlignment>
17+
<GeneratePkgDefFile>false</GeneratePkgDefFile>
18+
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
19+
<IncludeDebugSymbolsInVSIXContainer>true</IncludeDebugSymbolsInVSIXContainer>
20+
<IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
21+
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
22+
<CopyOutputSymbolsToOutputDirectory>true</CopyOutputSymbolsToOutputDirectory>
23+
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
24+
<FileUpgradeFlags>
25+
</FileUpgradeFlags>
26+
<OldToolsVersion>4.0</OldToolsVersion>
27+
<UpgradeBackupLocation />
28+
<PublishUrl>publish\</PublishUrl>
29+
<Install>true</Install>
30+
<InstallFrom>Disk</InstallFrom>
31+
<UpdateEnabled>false</UpdateEnabled>
32+
<UpdateMode>Foreground</UpdateMode>
33+
<UpdateInterval>7</UpdateInterval>
34+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
35+
<UpdatePeriodically>false</UpdatePeriodically>
36+
<UpdateRequired>false</UpdateRequired>
37+
<MapFileExtensions>true</MapFileExtensions>
38+
<ApplicationRevision>0</ApplicationRevision>
39+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
40+
<IsWebBootstrapper>false</IsWebBootstrapper>
41+
<UseApplicationTrust>false</UseApplicationTrust>
42+
<BootstrapperEnabled>true</BootstrapperEnabled>
43+
</PropertyGroup>
44+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
45+
<DebugSymbols>true</DebugSymbols>
46+
<DebugType>full</DebugType>
47+
<Optimize>false</Optimize>
48+
<OutputPath>..\..\..\..\..\..\..\Documents\DevExpress\IDE Tools\Community\Plugins\</OutputPath>
49+
<DefineConstants>DEBUG;TRACE</DefineConstants>
50+
<ErrorReport>prompt</ErrorReport>
51+
<WarningLevel>4</WarningLevel>
52+
</PropertyGroup>
53+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
54+
<DebugType>pdbonly</DebugType>
55+
<Optimize>true</Optimize>
56+
<OutputPath>bin\Release\</OutputPath>
57+
<DefineConstants>TRACE</DefineConstants>
58+
<ErrorReport>prompt</ErrorReport>
59+
<WarningLevel>4</WarningLevel>
60+
</PropertyGroup>
61+
<ItemGroup>
62+
<Reference Include="DevExpress.Refactor.Core, Version=13.2.7.0, Culture=neutral, PublicKeyToken=3f8e338797a7a380, processorArchitecture=MSIL" />
63+
<Reference Include="System" />
64+
<Reference Include="System.ComponentModel.Composition" />
65+
<Reference Include="System.Core">
66+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
67+
</Reference>
68+
<Reference Include="System.Xml.Linq">
69+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
70+
</Reference>
71+
<Reference Include="System.Data.DataSetExtensions">
72+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
73+
</Reference>
74+
<Reference Include="System.Data" />
75+
<Reference Include="System.Drawing" />
76+
<Reference Include="System.Windows.Forms" />
77+
<Reference Include="System.Xml" />
78+
<Reference Include="EnvDTE" />
79+
<Reference Include="EnvDTE80" />
80+
<Reference Include="DevExpress.CodeRush.Common" />
81+
<Reference Include="DevExpress.CodeRush.Core" />
82+
<Reference Include="DevExpress.CodeRush.PlugInCore" />
83+
<Reference Include="DevExpress.CodeRush.StructuralParser" />
84+
<Reference Include="DevExpress.DXCore.Parser" />
85+
<Reference Include="DevExpress.CodeRush.VSCore" />
86+
</ItemGroup>
87+
<ItemGroup>
88+
<Compile Include="PlugIn1.cs">
89+
<SubType>Component</SubType>
90+
</Compile>
91+
<Compile Include="PlugIn1.Designer.cs">
92+
<DependentUpon>PlugIn1.cs</DependentUpon>
93+
</Compile>
94+
<Compile Include="Properties\AssemblyInfo.cs" />
95+
<Compile Include="PlugIn1VsixExtension.cs" />
96+
</ItemGroup>
97+
<ItemGroup>
98+
<None Include="source.extension.vsixmanifest">
99+
<SubType>Designer</SubType>
100+
</None>
101+
</ItemGroup>
102+
<ItemGroup>
103+
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
104+
<Visible>False</Visible>
105+
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
106+
<Install>true</Install>
107+
</BootstrapperPackage>
108+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
109+
<Visible>False</Visible>
110+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
111+
<Install>false</Install>
112+
</BootstrapperPackage>
113+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
114+
<Visible>False</Visible>
115+
<ProductName>.NET Framework 3.5 SP1</ProductName>
116+
<Install>false</Install>
117+
</BootstrapperPackage>
118+
<BootstrapperPackage Include="Microsoft.Windows.Installer.4.5">
119+
<Visible>False</Visible>
120+
<ProductName>Windows Installer 4.5</ProductName>
121+
<Install>true</Install>
122+
</BootstrapperPackage>
123+
</ItemGroup>
124+
<ItemGroup>
125+
<Content Include="CR-Plug-in.png">
126+
<IncludeInVSIX>true</IncludeInVSIX>
127+
</Content>
128+
</ItemGroup>
129+
<PropertyGroup>
130+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
131+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
132+
</PropertyGroup>
133+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
134+
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
135+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\VSSDK\Microsoft.VsSDK.targets" Condition="false" />
136+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
137+
Other similar extension points exist, see Microsoft.Common.targets.
138+
<Target Name="BeforeBuild">
139+
</Target>
140+
<Target Name="AfterBuild">
141+
</Target>
142+
-->
143+
</Project>

CR_ConvertStringToAppSetting/PlugIn1.Designer.cs

Lines changed: 46 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)