YAFLogo

nordic
  • nordic
  • 92% (Exalted)
  • YAF Lover Topic Starter
14 years ago
I have this problem with publish yaf. on stackoverflow 

This problem is only in the yaf

Sponsor
Jaben
  • Jaben
  • 100% (Exalted)
  • YAF Developer
14 years ago
More information required: Version of YAF? Screen shot if possible.
logan
  • logan
  • 100% (Exalted)
  • YAF Leader
14 years ago
Got the same, seems if you add to YetnotherForum.Net Yaf.csproj

the v10.0 targets it will publish but you get some weird stuff

as trying to get emoticons from the medals folder.

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <ProjectView>ShowAllFiles</ProjectView>
  </PropertyGroup>
  <ProjectExtensions>
    <VisualStudio>
      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
        <WebProjectProperties>
          <StartPageUrl>
          </StartPageUrl>
          <StartAction>CurrentPage</StartAction>
          <AspNetDebugging>True</AspNetDebugging>
          <SilverlightDebugging>False</SilverlightDebugging>
          <NativeDebugging>False</NativeDebugging>
          <SQLDebugging>False</SQLDebugging>
          <ExternalProgram>
          </ExternalProgram>
          <StartExternalURL>
          </StartExternalURL>
          <StartCmdLineArguments>
          </StartCmdLineArguments>
          <StartWorkingDirectory>
          </StartWorkingDirectory>
          <EnableENC>False</EnableENC>
          <AlwaysStartWebServerOnDebug>True</AlwaysStartWebServerOnDebug>
        </WebProjectProperties>
      </FlavorProperties>
    </VisualStudio>
  </ProjectExtensions>
  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
</Project>

<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />

test
doxa123
  • doxa123
  • 100% (Exalted)
  • YAF All-the-Time YAF Version: 3.1.14
14 years ago
I have this problem with publish YAF v1.9.4 FINAL

Solved! I replaced .dll files to newer.


cpetenes
14 years ago
I'm having the same problems with the publish. I just downloaded the latest source and am just trying to publish to the file system. It builds fine, it just gives that same message.

What dll's were you refering to?

cpetenes
14 years ago
Seems to be more of an issue with Studio.
cpetenes
14 years ago
What worked for me was this. in the project file I changed:


  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.targets" Condition="'$(Solutions.VSVersion)' == '9.0'" />
  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="'$(Solutions.VSVersion)' == '10.0'" />

To:


  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />

Not sure which part actually did the fix, but I removed the 9.0 and the conditional on 10.0.

Seems to work. It published at least, lol.

doxa123
  • doxa123
  • 100% (Exalted)
  • YAF All-the-Time YAF Version: 3.1.14
14 years ago
Also i changed .dll files.
nordic
  • nordic
  • 92% (Exalted)
  • YAF Lover Topic Starter
14 years ago
Not working for me. This is new error.

squirrel
14 years ago

Not working for me. This is new error.

Originally Posted by: nordic 

There is a reference to that file somewhere in the project - just remove the reference for now and you will be able to compile.


If you can't find it using the forum search, try my signature link -- searches this site using Google: Google is my Friend 
nordic
  • nordic
  • 92% (Exalted)
  • YAF Lover Topic Starter
14 years ago

Not working for me. This is new error.

Originally Posted by: squirrel 

There is a reference to that file somewhere in the project - just remove the reference for now and you will be able to compile.

Originally Posted by: nordic 

If delete this reference,than show another like thousand other references. is not way.

added:

I update source code from latest version and working !

Thank you very much.

boban984
  • boban984
  • 54.8% (Neutral)
  • YAF Forumling
13 years ago

Solves the MSBuild target PipelinePreDeployCopyAllFilesToOneFolder cannot be found when deploying problem.

Just curious , why

and no mention anywhere in the install guide what do to.

Im using YAF-v1.9.5.5-RTW-SRC it is after all a production release , it shoud be stated somewhere in the docs that this is a known issue.

Also AutoFac was missing in Utils project , i downloaded the source from codeplex.

markg
  • markg
  • 51.2% (Neutral)
  • YAF Forumling
13 years ago
This thread helped me today. Working with the latest source YAF-v1.9.5.5-RTW-SRC,

In YAF.csproj Replacing:

With:

Good publish!