Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable MSBuild packaging on AppModule Branch #2

Merged
merged 3 commits into from
Feb 14, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,10 @@ $RECYCLE.BIN/

# Mac desktop service store files
.DS_Store

# =========================
# DNN Module
# =========================

# Ignore ModulePackages
ModulePackages/
10 changes: 2 additions & 8 deletions 2Sexy Content Razor/2Sexy Content Razor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\Web\bin\</OutputPath>
<OutputPath>..\..\..\bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>..\..\..\bin\ToSic.SexyContent.Razor.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand Down Expand Up @@ -73,11 +74,4 @@
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
20 changes: 16 additions & 4 deletions 2Sexy Content.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>C:\Projects\2Sexy Content\Web\bin\ToSic.SexyContent.xml</DocumentationFile>
<DocumentationFile>..\..\bin\ToSic.SexyContent.xml</DocumentationFile>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<NoWarn>1591</NoWarn>
</PropertyGroup>
Expand Down Expand Up @@ -318,6 +318,7 @@
<Compile Include="SexyContent\Engines\TokenEngine\TokenReplace.cs" />
<Compile Include="Views\AppView.ascx.cs">
<DependentUpon>AppView.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Views\AppView.ascx.designer.cs">
<DependentUpon>AppView.ascx</DependentUpon>
Expand All @@ -329,6 +330,7 @@
<Content Include="Administration\ContentTypeAndDemoSelector.ascx" />
<Content Include="Administration\Registers.ascx" />
<Content Include="API\Services.asmx" />
<Content Include="BuildScripts\MSBuild.Community.Tasks.dll" />
<Content Include="EditContentGroupItem.ascx" />
<Content Include="EditDataSource.ascx" />
<Content Include="EditList.ascx" />
Expand Down Expand Up @@ -371,9 +373,11 @@
<Content Include="Js\ItemForm.js" />
<Content Include="Js\ViewEdit.js" />
<Content Include="Administration\ManageTemplates.ascx" />
<Content Include="license.txt" />
<Content Include="module.css" />
<Content Include="Administration\EditTemplate.ascx" />
<Content Include="EditContentGroup.ascx" />
<Content Include="ReleaseNotes.txt" />
<Content Include="Settings.ascx" />
<Content Include="SettingsWrapper.ascx" />
<Content Include="SexyContent\EAV\Controls\ContentTypeEdit.ascx" />
Expand All @@ -398,6 +402,8 @@
<Content Include="Extensions\Thumbnailer.aspx" />
<Content Include="Js\2sxc.api.js" />
<Content Include="Extensions\ToSic_vCard\vCard.ashx" />
<Content Include="BuildScripts\ModulePackage.Targets" />
<Content Include="BuildScripts\MSBuild.Community.Tasks.targets" />
<None Include="SqlDataProvider\01.00.00.SqlDataProvider" />
<Content Include="SqlDataProvider\05.02.01.SqlDataProvider" />
<Content Include="Styles\Edit.css" />
Expand All @@ -419,9 +425,6 @@
<None Include="SqlDataProvider\03.03.00.SqlDataProvider" />
<None Include="SqlDataProvider\03.04.03.SqlDataProvider" />
<None Include="SqlDataProvider\04.00.00.SqlDataProvider" />
<None Include="2sic_2SexyContent-Packaging.dnn">
<SubType>Designer</SubType>
</None>
<None Include="2sic_2SexyContent.dnn" />
<Content Include="SqlDataProvider\04.00.02.SqlDataProvider" />
<Content Include="SqlDataProvider\05.01.00.SqlDataProvider" />
Expand Down Expand Up @@ -564,4 +567,13 @@
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<Extension>zip</Extension>
<DNNFileName>2sic_2SexyContent</DNNFileName>
<PackageName>2sic_2SexyContent</PackageName>
<MSBuildCommunityTasksPath>$(SolutionDir)\BuildScripts</MSBuildCommunityTasksPath>
</PropertyGroup>
<Import Project="$(SolutionDir)\BuildScripts\ModulePackage.Targets" />
<Target Name="AfterBuild" DependsOnTargets="PackageModule">
</Target>
</Project>
Loading