mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Adds assembly-info
This commit is contained in:
parent
4ed33a7d40
commit
8926e99d7e
8 changed files with 64 additions and 0 deletions
10
src/CalcViewModel/CalcViewModel.rc
Normal file
10
src/CalcViewModel/CalcViewModel.rc
Normal file
|
@ -0,0 +1,10 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
#define APP_FILE_NAME "CalcViewModel"
|
||||
#define APP_FILE_IS_EXE
|
||||
#define APP_PRODUCT_NAME "Microsoft Calculator ViewModel"
|
||||
#define APP_COMPANY_NAME "Microsoft Corporation"
|
||||
#define APP_COPYRIGHT "\251 Microsoft Corporation. All rights reserved."
|
||||
|
||||
#include "../build/appversion.rc"
|
|
@ -291,6 +291,12 @@
|
|||
<AdditionalOptions>/DSEND_DIAGNOSTICS %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<PropertyGroup>
|
||||
<Version Condition="'$(Version)' == ''">0.0.0.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="CalcViewModel.rc" PreprocessorDefinitions="%(PreprocessorDefinitions);APP_VERSION_MAJOR=$(Version.Split(`.`)[0]);APP_VERSION_MINOR=$(Version.Split(`.`)[1]);APP_VERSION_BUILD=$(Version.Split(`.`)[2]);APP_VERSION_REVISION=$(Version.Split(`.`)[3])" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="ApplicationViewModel.h" />
|
||||
<ClInclude Include="Common\AppResourceProvider.h" />
|
||||
|
|
10
src/GraphControl/GraphControl.rc
Normal file
10
src/GraphControl/GraphControl.rc
Normal file
|
@ -0,0 +1,10 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
#define APP_FILE_NAME "GraphControl"
|
||||
#define APP_FILE_IS_EXE
|
||||
#define APP_PRODUCT_NAME "Microsoft Calculator GraphControl"
|
||||
#define APP_COMPANY_NAME "Microsoft Corporation"
|
||||
#define APP_COPYRIGHT "\251 Microsoft Corporation. All rights reserved."
|
||||
|
||||
#include "../build/appversion.rc"
|
|
@ -300,6 +300,12 @@
|
|||
<AdditionalOptions>/DSEND_DIAGNOSTICS %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<PropertyGroup>
|
||||
<Version Condition="'$(Version)' == ''">0.0.0.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="GraphControl.rc" PreprocessorDefinitions="%(PreprocessorDefinitions);APP_VERSION_MAJOR=$(Version.Split(`.`)[0]);APP_VERSION_MINOR=$(Version.Split(`.`)[1]);APP_VERSION_BUILD=$(Version.Split(`.`)[2]);APP_VERSION_REVISION=$(Version.Split(`.`)[3])" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="Control\Grapher.h" />
|
||||
<ClInclude Include="DirectX\DeviceResources.h" />
|
||||
|
|
10
src/GraphingImpl/GraphingImpl.rc
Normal file
10
src/GraphingImpl/GraphingImpl.rc
Normal file
|
@ -0,0 +1,10 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
#define APP_FILE_NAME "GraphingImpl"
|
||||
#define APP_FILE_IS_EXE
|
||||
#define APP_PRODUCT_NAME "Microsoft Calculator Graphing Implementation"
|
||||
#define APP_COMPANY_NAME "Microsoft Corporation"
|
||||
#define APP_COPYRIGHT "\251 Microsoft Corporation. All rights reserved."
|
||||
|
||||
#include "../build/appversion.rc"
|
|
@ -239,6 +239,12 @@
|
|||
<GenerateWindowsMetadata>false</GenerateWindowsMetadata>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<PropertyGroup>
|
||||
<Version Condition="'$(Version)' == ''">0.0.0.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="GraphingImpl.rc" PreprocessorDefinitions="%(PreprocessorDefinitions);APP_VERSION_MAJOR=$(Version.Split(`.`)[0]);APP_VERSION_MINOR=$(Version.Split(`.`)[1]);APP_VERSION_BUILD=$(Version.Split(`.`)[2]);APP_VERSION_REVISION=$(Version.Split(`.`)[3])" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\GraphingInterfaces\Common.h" />
|
||||
<ClInclude Include="..\GraphingInterfaces\GraphingEnums.h" />
|
||||
|
|
10
src/TraceLogging/TraceLogging.rc
Normal file
10
src/TraceLogging/TraceLogging.rc
Normal file
|
@ -0,0 +1,10 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
#define APP_FILE_NAME "TraceLogging"
|
||||
#define APP_FILE_IS_EXE
|
||||
#define APP_PRODUCT_NAME "Microsoft Calculator TraceLogging"
|
||||
#define APP_COMPANY_NAME "Microsoft Corporation"
|
||||
#define APP_COPYRIGHT "\251 Microsoft Corporation. All rights reserved."
|
||||
|
||||
#include "../build/appversion.rc"
|
|
@ -275,6 +275,12 @@
|
|||
<AdditionalOptions>/DSEND_DIAGNOSTICS %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<PropertyGroup>
|
||||
<Version Condition="'$(Version)' == ''">0.0.0.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="TraceLogging.rc" PreprocessorDefinitions="%(PreprocessorDefinitions);APP_VERSION_MAJOR=$(Version.Split(`.`)[0]);APP_VERSION_MINOR=$(Version.Split(`.`)[1]);APP_VERSION_BUILD=$(Version.Split(`.`)[2]);APP_VERSION_REVISION=$(Version.Split(`.`)[3])" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="pch.h" />
|
||||
<ClInclude Include="TraceLoggingCommon.h" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue