Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Commit

Permalink
Change target framework to .NET 4.5 (fix #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keuvain committed Jun 8, 2016
1 parent 6fba976 commit b4a5b5a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Pretzel.Categories.Tests/Pretzel.Categories.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Pretzel.Categories.Tests</RootNamespace>
<AssemblyName>Pretzel.Categories.Tests</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
<IsCodedUITest>False</IsCodedUITest>
<TestProjectType>UnitTest</TestProjectType>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
5 changes: 1 addition & 4 deletions Pretzel.Categories/BaseFolderGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@ protected BaseFolderGenerator(string folderToGenerate)
this.folderName = folderToGenerate;
}

public string[] GetArguments(string command)
{
return command == "taste" || command == "bake" ? new[] { $"n{this.folderName}" } : new string[0];
}
public string[] GetArguments(string command) => command == "taste" || command == "bake" ? new[] { $"n{this.folderName}" } : new string[0];

public void Transform(SiteContext siteContext)
{
Expand Down
3 changes: 2 additions & 1 deletion Pretzel.Categories/Pretzel.Categories.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Pretzel.Categories</RootNamespace>
<AssemblyName>Pretzel.Categories</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down

0 comments on commit b4a5b5a

Please sign in to comment.