Updated project file with relative rather than absolute paths
This commit is contained in:
parent
29f58e4f96
commit
0464ff5568
1 changed files with 16 additions and 16 deletions
|
@ -25,7 +25,7 @@
|
|||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>C:\AffdexMe\AffdexMe\Resources\AffdexMe_Logo.ico</ApplicationIcon>
|
||||
<ApplicationIcon>$(ProjectDir)Resources\AffdexMe_Logo.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
|
@ -57,49 +57,49 @@
|
|||
<Reference Include="PresentationFramework" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Page Include="C:\AffdexMe\AffdexMe\MainWindow.xaml">
|
||||
<Page Include="$(ProjectDir)MainWindow.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Compile Include="App.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="C:\AffdexMe\AffdexMe\MainWindow.xaml.cs">
|
||||
<DependentUpon>C:\AffdexMe\AffdexMe\MainWindow.xaml</DependentUpon>
|
||||
<Compile Include="$(ProjectDir)MainWindow.xaml.cs">
|
||||
<DependentUpon>$(ProjectDir)MainWindow.xaml</DependentUpon>
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="C:\AffdexMe\AffdexMe\Properties\AssemblyInfo.cs">
|
||||
<Compile Include="$(ProjectDir)Properties\AssemblyInfo.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="C:\AffdexMe\AffdexMe\Properties\Resources.Designer.cs">
|
||||
<Compile Include="$(ProjectDir)Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="C:\AffdexMe\AffdexMe\Properties\Settings.Designer.cs">
|
||||
<Compile Include="$(ProjectDir)Properties\Settings.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>C:\AffdexMe\AffdexMe\Settings.settings</DependentUpon>
|
||||
<DependentUpon>$(ProjectDir)Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>C:\AffdexMe\AffdexMe\Resources.Designer.cs</LastGenOutput>
|
||||
<LastGenOutput>$(ProjectDir)Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<Resource Include="C:\AffdexMe\AffdexMe\Fonts\Square.ttf" />
|
||||
<None Include="C:\AffdexMe\AffdexMe\Properties\Settings.settings">
|
||||
<Resource Include="$(ProjectDir)Fonts\Square.ttf" />
|
||||
<None Include="$(ProjectDir)Properties\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>C:\AffdexMe\AffdexMe\Settings.Designer.cs</LastGenOutput>
|
||||
<LastGenOutput>$(ProjectDir)Settings.Designer.cs</LastGenOutput>
|
||||
</None>
|
||||
<AppDesigner Include="C:\AffdexMe\AffdexMe\Properties\" />
|
||||
<AppDesigner Include="$(ProjectDir)Properties\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\AffdexMe\AffdexMe\App.config" />
|
||||
<None Include="$(ProjectDir)App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Resource Include="C:\AffdexMe\AffdexMe\Resources\AffectivaLogo1.png" />
|
||||
<Resource Include="C:\AffdexMe\AffdexMe\Resources\AffdexMe_Logo.ico" />
|
||||
<Resource Include="$(ProjectDir)Resources\AffectivaLogo1.png" />
|
||||
<Resource Include="$(ProjectDir)Resources\AffdexMe_Logo.ico" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
|
|
Loading…
Reference in a new issue